[package] name = "mapgraph" description = "A directed graph that can also be used as an arbitrary map." version = "0.12.0" authors = ["turbocooler "] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.66" categories = ["data-structures", "no-std"] keywords = ["graph", "map"] documentation = "https://docs.rs/mapgraph" repository = "https://gitlab.com/turbocooler/mapgraph" [features] default = ["std", "algorithms", "alloc", "slotmap"] alloc = [] std = ["alloc", "slotmap?/std", "indexmap?/std"] algorithms = [] serde = ["dep:serde", "slotmap?/serde", "indexmap?/serde"] rayon = ["dep:rayon", "indexmap?/rayon"] [dependencies] slotmap = { version = "1.0", optional = true, default-features = false } indexmap = { version = "2.0", optional = true, default-features = false } serde = { version = "1.0", optional = true, default-features = false, features = [ "derive", ] } rayon = { version = "1.0", optional = true, default-features = false } [dev-dependencies] slotmap = "1.0" [package.metadata.docs.rs] all-features = true