[package] name = "shared-rc" version = "0.1.1" edition = "2021" rust-version = "1.56.0" description = "Rc wrapper which can separate the data from the reference count" repository = "https://github.com/point-rs/shared-rc" license = "MIT OR Apache-2.0" keywords = ["rc", "arc", "projected", "shared_ptr", "reference-counting"] categories = ["data-structures", "memory-management", "no-std", "rust-patterns"] [features] std = [] unsize = ["dep:unsize"] # deprecated, does nothing static_assertions = [] [dependencies] unsize = { version = "1.1.0", optional = true } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg=docsrs"]