# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "btree_graph" version = "0.2.2" authors = ["James Spears "] autotests = false description = "A generic graph data structure." homepage = "https://github.com/jameone/btree_graph" readme = "README.md" keywords = ["graph", "generic"] categories = ["data-structures", "no-std"] license = "MIT OR Apache-2.0" repository = "https://github.com/jameone/btree_graph" [profile.release] opt-level = "z" [[test]] name = "integration" path = "tests/lib.rs" [[bench]] name = "benchmark" path = "benches/lib.rs" harness = false [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [dependencies.try_encoding_from] version = "0.1" optional = true default-features = false [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"]