1[package] 2name = "weak-table" 3version = "0.3.2" 4authors = ["Jesse A. Tov <jesse.tov@gmail.com>"] 5description = "Weak hash maps and sets" 6repository = "https://github.com/tov/weak-table-rs" 7readme = "README.md" 8license = "MIT" 9keywords = ["containers", "Rc", "Arc", "weak", "no_std"] 10edition = "2018" 11 12[dependencies] 13ahash = { version = "0.7.6", optional = true, features = [] } 14 15[dev-dependencies] 16quickcheck = "1" 17rand = "0.8.4" 18 19[features] 20default = ["std"] 21std = [] 22 23# This feature doesn’t actually do anything. TODO: remove in v0.4. 24alloc = [] 25