[package] name = "ratio-graph" description = "Ratio's graph manipulation library." version = "0.21.2" license = "GPL-3.0-or-later" keywords = ["graph", "algorithms", "mathematics"] categories = ["algorithms", "mathematics", "science"] homepage = "https://gitlab.com/ratio-case-os/rust/ratio-graph" repository = "https://gitlab.com/ratio-case-os/rust/ratio-graph.git" include = ["**/*.rs", "Cargo.toml", "src/datasets/*.json"] edition = "2021" readme = "README.md" [features] default = ["serde"] serde = ["dep:serde"] [dependencies] nalgebra = { version = "~0" } phf = { version = "~0", features = ["macros"] } serde = { version = "~1", features = ["derive"], optional = true } serde_json = { version = "~1" } snafu = "0.8.0" uuid = { version = "~1", features = ["v4", "serde"] } [dev-dependencies] pretty_assertions = { version = "~1" }