aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 3594791f2a1401a45a402081b148c580c0cd7585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "weak-table"
version = "0.3.2"
authors = ["Jesse A. Tov <jesse.tov@gmail.com>"]
description = "Weak hash maps and sets"
repository = "https://github.com/tov/weak-table-rs"
readme = "README.md"
license = "MIT"
keywords = ["containers", "Rc", "Arc", "weak", "no_std"]
edition = "2018"

[dependencies]
ahash = { version = "0.7.6", optional = true, features = [] }

[dev-dependencies]
quickcheck = "1"
rand = "0.8.4"

[features]
default = ["std"]
std = []

# This feature doesn’t actually do anything. TODO: remove in v0.4.
alloc = []