[package] name = "tetsy-trie-db" version = "0.22.3" authors = ["Parity Technologies ", "Tetcoin Developers "] description = "tetsy merkle-patricia trie generic over key hasher and node encoding" license = "Apache-2.0" edition = "2018" keywords = [ "tetcoin", "tetcore", "vapory" ] categories = [ "cryptography::cryptocurrencies" ] homepage = "https://core.tetcoin.org" repository = "https://github.com/tetcoin/trie.git" documentation = "https://docs.rs/tetsy-trie-db" [dependencies] log = "0.4" smallvec = "1.0.0" tetsy-hash-db = { path = "../tetsy-hash-db", default-features = false, version = "0.15.3"} hashbrown = { version = "0.9.1", default-features = false, features = ["ahash"] } rustc-hex = { version = "2.1.0", default-features = false, optional = true } [features] default = ["std"] std = [ "tetsy-hash-db/std", "rustc-hex", ]