[package]
edition = "2021"
rust-version = "1.60"
name = "hashconsing"
version = "1.7.0"
authors = [
"Adrien Champion <adrien.champion@email.com>",
"Leni Aniva <aniva@stanford.edu>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hash consing library."
homepage = "https://github.com/AdrienChampion/hashconsing"
documentation = "https://docs.rs/hashconsing"
readme = "README.md"
keywords = [
"hashconsing",
"hash",
"consing",
"sharing",
"caching",
]
categories = [
"caching",
"compression",
"concurrency",
"data-structures",
"memory-management",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/AdrienChampion/hashconsing"
[package.metadata.docs.rs]
features = ["unstable_docrs"]
[features]
unstable_docrs = ["with_ahash"]
weak-table = ["dep:weak-table"]
with_ahash = ["ahash"]
[lib]
name = "hashconsing"
path = "src/lib.rs"
[[test]]
name = "send_sync"
path = "tests/send_sync.rs"
[[bench]]
name = "traversals"
path = "benches/traversals.rs"
[dependencies.ahash]
version = "^0.8.3"
optional = true
[dependencies.lazy_static]
version = "1.*"
[dependencies.weak-table]
version = "^0.3.0"
optional = true
[dev-dependencies.crossbeam-utils]
version = "^0.8"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rayon]
version = "^1.5"
[dev-dependencies.trybuild]
version = "^1.0"