# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.66" name = "mapgraph" version = "0.12.0" authors = ["turbocooler "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A directed graph that can also be used as an arbitrary map." documentation = "https://docs.rs/mapgraph" readme = "README.md" keywords = [ "graph", "map", ] categories = [ "data-structures", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/turbocooler/mapgraph" [package.metadata.docs.rs] all-features = true [lib] name = "mapgraph" path = "src/lib.rs" [dependencies.indexmap] version = "2.0" optional = true default-features = false [dependencies.rayon] version = "1.0" optional = true default-features = false [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [dependencies.slotmap] version = "1.0" optional = true default-features = false [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", ]