blob: 3594791f2a1401a45a402081b148c580c0cd7585 [file] [log] [blame]
Joel Galenson2370d122020-10-12 16:02:26 -07001[package]
2name = "weak-table"
David LeGare77e4bb92022-03-02 16:21:23 +00003version = "0.3.2"
Joel Galenson2370d122020-10-12 16:02:26 -07004authors = ["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"
David LeGare77e4bb92022-03-02 16:21:23 +00009keywords = ["containers", "Rc", "Arc", "weak", "no_std"]
Joel Galenson2370d122020-10-12 16:02:26 -070010edition = "2018"
11
12[dependencies]
David LeGare77e4bb92022-03-02 16:21:23 +000013ahash = { version = "0.7.6", optional = true, features = [] }
Joel Galenson2370d122020-10-12 16:02:26 -070014
15[dev-dependencies]
David LeGare77e4bb92022-03-02 16:21:23 +000016quickcheck = "1"
17rand = "0.8.4"
Joel Galenson2370d122020-10-12 16:02:26 -070018
David LeGare77e4bb92022-03-02 16:21:23 +000019[features]
20default = ["std"]
21std = []
22
23# This feature doesn’t actually do anything. TODO: remove in v0.4.
24alloc = []