Registry / database / kv
library0.24.0rscratesunverified

An embedded key/value store for Rust, providing persistent storage with a simple API.

# Cargo.toml [dependencies] kv = "0.24.0"
INSTALL
IMPORT
SIG · KV
K
kv
databaserustv0.24.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Store
use kv::Store;

Opens a key-value store, sets a key, and retrieves it.

use kv::Store; fn main() -> kv::Result<()> { let store = Store::new("my_db")?; store.set("key", "value")?; let value: String = store.get("key")?.unwrap(); println!("{}", value); Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.24.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Resources
kv — cargo add kv · libregistry