[package]
name = "graphrefly-core"
description = "GraphReFly handle-protocol core dispatcher"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
[dependencies]
parking_lot = { workspace = true }
ahash = { workspace = true }
smallvec = { workspace = true }
indexmap = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
[dev-dependencies]
proptest = { workspace = true }
criterion = { workspace = true }
[target.'cfg(loom)'.dev-dependencies]
loom = { workspace = true }
[[bench]]
name = "dispatcher"
harness = false
[[bench]]
name = "per_subgraph_parallelism"
harness = false
[features]
default = ["std"]
std = []
loom-checked = []
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(loom)"] }