зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
573 B
TOML
19 строки
573 B
TOML
|
[package]
|
||
|
name = "stable_deref_trait"
|
||
|
version = "1.0.0"
|
||
|
authors = ["Robert Grosse <n210241048576@gmail.com>"]
|
||
|
license = "MIT/Apache-2.0"
|
||
|
readme = "README.md"
|
||
|
repository = "https://github.com/storyyeller/stable_deref_trait"
|
||
|
documentation = "https://docs.rs/stable_deref_trait/1.0.0/stable_deref_trait"
|
||
|
categories = ["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 = []
|
||
|
|
||
|
[dependencies]
|