-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
39 lines (34 loc) · 873 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
[package]
name = "hashconsing"
version = "1.6.0"
authors = ["Adrien Champion <adrien.champion@email.com>"]
description = "A hash consing library."
documentation = "https://docs.rs/hashconsing"
homepage = "https://github.com/AdrienChampion/hashconsing"
repository = "https://github.com/AdrienChampion/hashconsing"
readme = "README.md"
categories = [
"caching",
"compression",
"concurrency",
"data-structures",
"memory-management",
]
keywords = ["hashconsing", "hash", "consing", "sharing", "caching"]
license = "MIT/Apache-2.0"
edition = "2021"
[package.metadata.docs.rs]
features = ["unstable_docrs"]
[features]
with_ahash = ["ahash"]
unstable_docrs = ["with_ahash"]
[dependencies]
lazy_static = "1.*"
[dependencies.ahash]
version = "^0.8.3"
optional = true
[dev-dependencies]
crossbeam-utils = "^0.8"
trybuild = "^1.0"
rayon = "^1.5"
rand = "0.8"