1[package]
2name = "stable_deref_trait"
3version = "1.2.0"
4authors = ["Robert Grosse <n210241048576@gmail.com>"]
5license = "MIT/Apache-2.0"
6readme = "README.md"
7repository = "https://github.com/storyyeller/stable_deref_trait"
8documentation = "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait"
9categories = ["memory-management", "no-std"]
10description = """
11An 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.
12"""
13
14[features]
15default = ["std"]
16std = ["alloc"]
17alloc = []
18