[package]
edition = "2021"
rust-version = "1.78.0"
name = "depends"
version = "0.11.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ergonomic, performant, incremental computation between arbitrary types"
readme = "README.md"
keywords = [
"dag",
"graph",
"incremental",
"computation",
"cache",
]
license = "MIT"
repository = "https://github.com/Justice4Joffrey/depends-rs"
[package.metadata.docs.rs]
features = [
"graphviz",
"hashbrown",
]
no-default-features = true
rustc-args = [
"--cfg",
"doc_cfg",
]
rustdoc-args = [
"--cfg",
"doc_cfg",
]
[lib]
name = "depends"
path = "src/lib.rs"
[dependencies.ahash]
version = "0.8.6"
optional = true
[dependencies.depends_derives]
version = "0.11.0"
[dependencies.hashbrown]
version = "0.14.0"
features = ["ahash"]
optional = true
[dependencies.paste]
version = "1.0.15"
[dependencies.thiserror]
version = "1.0.43"
[dev-dependencies.serial_test]
version = "3.0.0"
[features]
default = []
graphviz = ["depends_derives/graphviz"]
hashbrown = [
"dep:ahash",
"dep:hashbrown",
]
test-utils = []