forked from droundy/internment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (50 loc) · 1.72 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "internment"
version = "0.7.0"
authors = ["David Roundy <roundyd@physics.oregonstate.edu>"]
edition = "2018"
description = "Easy interning of data"
license = "MIT OR Apache-2.0"
repository = "https://github.com/droundy/internment"
readme = "README.md"
categories = ["caching", "memory-management", "concurrency"]
keywords = ["hash", "interning", "hashconsing", "caching", "interner"]
[badges]
appveyor = { repository = "droundy/internment" }
travis-ci = { repository = "droundy/internment" }
coveralls = { repository = "droundy/internment" }
is-it-maintained-issue-resolution = { repository = "droundy/internment" }
is-it-maintained-open-issues = { repository = "droundy/internment" }
maintenance = { status = "actively-developed" }
[dependencies]
parking_lot = "0.12.0"
ahash = { version = "0.7.6", optional = true }
dashmap = { version = "5.1.0", optional = true }
once_cell = { version = "1.4", optional = true }
tinyset = { version = "0.4.2", optional = true }
memorable-wordlist = { version = "0.1.7", optional = true }
hashbrown = { version = "0.12.0" }
serde = { version = "1.0", optional = true }
arc-interner = { version = "0.7", optional = true }
append-only-vec = { version = "0.1.2", optional = true }
[features]
arc = ["ahash", "dashmap", "once_cell"]
bench = ["arc", "arc-interner", "arena", "memorable-wordlist", "append-only-vec"]
arena = []
intern = []
default = ["intern"]
[dev-dependencies]
quickcheck = "^0.9.2"
scaling = "0.1.3"
rand = "0.7.2"
# [profile.release]
# debug = true
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]
[[bench]]
name = "bench"
harness = false