rskey 0.4.0

A simple persistent key-value store that wraps HashMap, with a basic CLI tool to list, get, and set key-value pairs.
Documentation
[[bin]]
name = "rskey"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.92"

[dependencies.serde]
features = ["derive"]
version = "1.0.201"

[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"

[lib]
name = "rskey"
path = "src/lib.rs"

[package]
authors = ["John Arundel <john@bitfieldconsulting.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = """
A simple persistent key-value store that wraps HashMap, with a basic CLI tool to list, get, and set key-value pairs.
"""
documentation = "https://docs.rs/rskey"
edition = "2021"
exclude = ["/.github/"]
homepage = "https://github.com/bitfield/rskey"
keywords = ["key-value-store", "database", "cli", "kv"]
license = "MIT OR Apache-2.0"
name = "rskey"
readme = "README.md"
repository = "https://github.com/bitfield/rskey"
rust-version = "1.81"
version = "0.4.0"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"