mapgraph 0.11.0

A directed graph that can also be used as an arbitrary map.
Documentation
[dependencies.indexmap]
default-features = false
optional = true
version = "2.0"

[dependencies.rayon]
default-features = false
optional = true
version = "1.0"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0"

[dependencies.slotmap]
default-features = false
optional = true
version = "1.0"

[dev-dependencies.slotmap]
version = "1.0"

[features]
algorithms = []
alloc = []
default = ["std", "algorithms", "alloc", "slotmap"]
rayon = ["dep:rayon", "indexmap?/rayon"]
serde = ["dep:serde", "slotmap?/serde", "indexmap?/serde"]
std = ["alloc", "slotmap?/std", "indexmap?/std"]

[lib]
name = "mapgraph"
path = "src/lib.rs"

[package]
authors = ["turbocooler <turbocooler@cocaine.ninja>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "no-std"]
description = "A directed graph that can also be used as an arbitrary map."
documentation = "https://docs.rs/mapgraph"
edition = "2021"
keywords = ["graph", "map"]
license = "MIT OR Apache-2.0"
name = "mapgraph"
readme = "README.md"
repository = "https://gitlab.com/turbocooler/mapgraph"
rust-version = "1.66"
version = "0.11.0"

[package.metadata.docs.rs]
all-features = true