# 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 = "docdb" version = "0.1.0" authors = ["Reid "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A lightweight and simple key-value store written in Rust" homepage = "https://github.com/Reid00/docDB" readme = "README.md" keywords = [ "database", "key-value-store", "db", "kv", "docdb", ] categories = [ "database-implementations", "database", ] license = "Apache-2.0" repository = "https://github.com/Reid00/docDB" [lib] name = "docdb" path = "src/lib.rs" [[test]] name = "dump_policy_test" path = "tests/dump_policy_test.rs" [[test]] name = "error_test" path = "tests/error_test.rs" [[test]] name = "key_val_test" path = "tests/key_val_test.rs" [dependencies.bincode] version = "1.3" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_json] version = "1.0" optional = true [dependencies.serde_yaml] version = "0.9" optional = true [dev-dependencies.fs2] version = "0.4" [features] bincode = ["dep:bincode"] cbor = [] default = ["json"] json = ["serde_json"] yaml = ["serde_yaml"]