[[bench]]
harness = false
name = "benchmark"
path = "benches/lib.rs"
[[test]]
name = "integration"
path = "tests/lib.rs"
[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0"
[dependencies.try_encoding_from]
default-features = false
optional = true
version = "0.1"
[dev-dependencies.criterion]
version = "0.3.3"
[features]
fmt = []
serde_cbor = ["try_encoding_from/cbor"]
serde_json = ["try_encoding_from/json"]
serde_yaml = ["try_encoding_from/yaml"]
[package]
authors = ["James Spears <james.w.spears@gmail.com>"]
autotests = false
categories = ["data-structures", "no-std"]
description = "A generic graph data structure."
edition = "2018"
homepage = "https://github.com/jameone/btree_graph"
keywords = ["graph", "generic"]
license = "MIT OR Apache-2.0"
name = "btree_graph"
readme = "README.md"
repository = "https://github.com/jameone/btree_graph"
version = "0.1.4"
[profile.release]
opt-level = "z"