/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "rcell"
 3  description = "A Cell which can hold either an Arc or an Weak smartpointer or be empty"
 4  version = "2.0.0"
 5  readme = "README.md"
 6  license = "MIT OR Apache-2.0"
 7  authors = ["Christian Thäter <ct@pipapo.org>"]
 8  repository = "https://github.com/cehteh/rcell.git"
 9  documentation = "http://docs.rs/rcell"
10  edition = "2021"
11  keywords = ["arc", "cell"]
12  categories = ["concurrency", "memory-management"]
13  
14  [features]
15  default = ["sync"]
16  
17  # enabled by default, use 'sync' Arc/Weak; when disabled then non sync Rc/Weak are used
18  sync = []