-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 939 Bytes
/
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
[package]
name = "concurrent-interner"
version = "0.1.0"
edition = "2021"
rust-version = "1.56.1"
license = "MPL-2.0"
description = "A string interner usable from multiple threads."
[lib]
path = "src/concurrent_interner.rs"
[dependencies]
dashmap = "4.0"
typed-arena = { version = "2", optional = true }
[dev-dependencies]
rustc-hash = "1.1.0"
typed-arena = "2"
ahash = "0.7.4"
criterion = "0.3"
walkdir = "2.3.2"
crossbeam = "0.8"
quickcheck = { version = "1.0.3", default-features = false }
[features]
# Features are turned off by default
# default = []
# It is convenient to put the serial interner into the crate
# so that it can be used by both tests and benchmarks.
# It is not meant for external use.
#
# Not using the 'dep:' syntax for the feature because that is
# only available with rust >= 1.60 (Apr 2022).
_serial = ["typed-arena"]
[[bench]]
name = "interner-speed"
harness = false
path = "benchmarks/interner-speed.rs"