Registry / crypto / patricia-trie-vapory

patricia-trie-vapory

JSON →
library0.1.1rscratesunverified

Merkle-Patricia Trie implementation in Vapory style for Ethereum-like state storage.

# Cargo.toml [dependencies] patricia-trie-vapory = "0.1.1"
INSTALL
IMPORT
SIG · PATRICIA-TRIE-VAPO
P
patricia-trie-vapory
cryptorustv0.1.1
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.

PatriciaTrie
✓ use patricia_trie_vapory::PatriciaTrie;

Creates a Merkle-Patricia trie and performs basic insert and get operations.

use patricia_trie_vapory::PatriciaTrie; fn main() { let mut trie = PatriciaTrie::new(); trie.insert(b"key", b"value"); assert_eq!(trie.get(b"key"), Some(b"value".to_vec())); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
14
Resources
patricia-trie-vapory — cargo add patricia-trie-vapory · libregistry