-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
76 lines (59 loc) · 2 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
68
69
70
71
72
73
74
75
76
[package]
name = "internment"
version = "0.8.6"
authors = ["David Roundy <daveroundy@gmail.com>"]
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"]
rust-version = "1.70"
[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]
ahash = { version = "0.8.5", optional = true }
dashmap = { version = "5.4.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.15.0" }
serde = { version = "1.0", optional = true }
deepsize = { version = "0.2.0", optional = true }
arc-interner = { version = "0.7", optional = true }
append-only-vec = { version = "0.1.2", optional = true }
[features]
arc = ["dep:ahash", "dep:dashmap", "dep:once_cell"]
bench = ["arc", "arena", "_experimental-new-intern", "dep:memorable-wordlist"]
arena = []
intern = []
default = ["intern"]
_experimental-new-intern = ["dep:append-only-vec"]
[dev-dependencies]
quickcheck = "^0.9.2"
scaling = "0.1.3"
rand = "0.7.2"
serde_json = "1.0.87"
criterion = { version = "0.4", features = ["html_reports"] }
# [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
required-features = ["bench"]
[[bench]]
name = "get_container"
harness = false
required-features = ["bench"]