mapgraph 0.4.1

A directed graph that can also be used as an arbitrary map.
Documentation
[package]
name = "mapgraph"
description = "A directed graph that can also be used as an arbitrary map."
version = "0.4.1"
authors = ["turbocooler <turbocooler@cocaine.ninja>"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.65"
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"]
algorithms = []
serde = ["dep:serde", "slotmap?/serde"]

[dependencies]
slotmap = { version = "1.0", optional = true, default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }

[dev-dependencies]
slotmap = "1.0"