[package] name = "carpet" version = "0.1.1" description = "A thread-safe, fully-parallel directed graph" keywords = ["graph", "rayon", "parallel", "thread-safe"] categories = ["data-structures", "concurrency"] repository = "https://github.com/DonIsaac/carpet" homepage = "https://github.com/DonIsaac/carpet" license = "MIT" edition = "2021" [features] default = ["rayon"] dot = [] rayon = ["dep:rayon", "dashmap/rayon"] [dependencies] dashmap = { version = "6.1.0", features = ["rayon"] } nohash-hasher = { version = "0.2.0" } rayon = { version = "1.10.0", optional = true } [package.metadata."docs.rs"] all-features = true