Registry / database / cannyls

cannyls

JSON →
library0.10.0rscratesunverified

Embedded persistent key-value storage optimized for random-access workload and huge-capacity HDD.

# Cargo.toml [dependencies] cannyls = "0.10.0"
INSTALL
IMPORT
SIG · CANNYLS
C
cannyls
databaserustv0.10.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.

Storage
use cannyls::Storage;

Open a Cannyls storage, put and get a key-value pair.

use cannyls::Storage; fn main() { let mut storage = Storage::open("data.cannyls").unwrap(); storage.put(b"key", b"value").unwrap(); let val = storage.get(b"key").unwrap(); println!("Got: {:?}", val); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.10.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
16 hits · last 30 days
node
14
Amazon
1
OpenAI (training)
1
Resources
cannyls — cargo add cannyls · libregistry