[package] name = "ccl_stable_deref_trait" version = "1.0.2" authors = ["Robert Grosse "] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://gitlab.nebulanet.cc/xacrimon/ccl" documentation = "https://docs.rs/stable_deref_trait/1.1.1/stable_deref_trait" categories = ["memory-management", "no-std"] description = """ An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental. """ [features] default = ["std"] std = [] alloc = [] [dependencies] parking_lot = "0.9.0"