# 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" name = "ndb" version = "0.1.0" build = "build.rs" description = "plan9 ndb parser in rust. Early stage of development." readme = "README.md" keywords = [ "plan9", "ndb", ] categories = ["database"] license = "GPL-3.0-only" repository = "https://github.com/9glenda/rust-ndb" [profile.dev] opt-level = 0 lto = false debug = 0 [profile.release] opt-level = 3 lto = true strip = true [lib] name = "ndb" path = "src/lib.rs" [[bin]] name = "ndb-rs" path = "src/main.rs" [dependencies.clap] version = "4.4.5" features = [ "cargo", "derive", ] [dependencies.color-eyre] version = "0.6.2" [dependencies.nom] version = "7.1.3" [dependencies.serde] version = "1.0.188" features = [ "serde_derive", "derive", ] optional = true [dependencies.serde_json] version = "1.0.107" optional = true [dependencies.tracing] version = "0.1.37" [dependencies.tracing-error] version = "0.2.0" [dependencies.tracing-subscriber] version = "0.3.17" features = ["env-filter"] [features] capture-spantrace = [] default = [ "capture-spantrace", "serde", "extra-traits", ] extra-traits = [] serde = [ "dep:serde", "dep:serde_json", ]