# 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" rust-version = "1.81" name = "rskey" version = "0.4.0" authors = ["John Arundel "] build = false exclude = ["/.github/"] autobins = false autoexamples = false autotests = false autobenches = false description = """ A simple persistent key-value store that wraps HashMap, with a basic CLI tool to list, get, and set key-value pairs. """ homepage = "https://github.com/bitfield/rskey" documentation = "https://docs.rs/rskey" readme = "README.md" keywords = [ "key-value-store", "database", "cli", "kv", ] categories = ["command-line-utilities"] license = "MIT OR Apache-2.0" repository = "https://github.com/bitfield/rskey" [lib] name = "rskey" path = "src/lib.rs" [[bin]] name = "rskey" path = "src/main.rs" [[test]] name = "integration_test" path = "tests/integration_test.rs" [dependencies.anyhow] version = "1.0.92" [dependencies.serde] version = "1.0.201" features = ["derive"] [dependencies.serde_json] version = "1.0.117" [dev-dependencies.assert_cmd] version = "2.0.14" [dev-dependencies.predicates] version = "3.1.0" [dev-dependencies.pretty_assertions] version = "1.4.0" [dev-dependencies.tempfile] version = "3.10.1"