# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "lsmtree" version = "0.1.1" description = "Implements a Sparse Merkle tree for a key-value store. The tree implements the same optimisations specified in the libra whitepaper, to reduce the number of hash operations required per tree operation to O(k) where k is the number of non-empty elements in the tree." readme = "README.md" keywords = [ "merkletree", "merkle", "merkle-tree", "sparse_merkle_tree", "smt", ] categories = [ "cryptography", "data-structures", "no-std", ] license = "MIT/Apache-2.0" repository = "https://github.com/al8n/lsmtree" resolver = "2" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [profile.bench] opt-level = 3 lto = "thin" codegen-units = 1 debug = false debug-assertions = false rpath = false overflow-checks = false incremental = false [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.bytes] version = "1.2" default-features = false [dependencies.digest] version = "0.10" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.hashbrown] version = "0.12" [dev-dependencies.parking_lot] version = "0.12" [dev-dependencies.rand] version = "0.8" [dev-dependencies.sha2] version = "0.10" [dev-dependencies.tempfile] version = "3" [features] default = ["std"] std = ["bytes/default"] [target."cfg(target_arch = \"aarch64\")".dev-dependencies.sha2] version = "0.10" features = ["asm-aarch64"]