# 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 = "indexed-merkle-tree" version = "0.6.2" authors = [ "Ryan Quinn Ford ", "Sebastian Pusch ", ] description = "This crate provides an implementation of Indexed Merkle Trees, a version of Merkle trees that supports both membership and non-membership proofs." homepage = "https://github.com/deltadevsde/indexed-merkle-tree" readme = "README.md" keywords = [ "crypto", "merkle-tree", "membership", "non-membership", ] categories = ["no-std"] license = "MIT" repository = "https://github.com/deltadevsde/indexed-merkle-tree" [[bench]] name = "tree_benchmarks" harness = false [dependencies.anyhow] version = "1.0.44" default-features = false [dependencies.bls12_381] version = "0.8.0" optional = true default-features = false [dependencies.borsh] version = "1.5.1" features = ["derive"] default-features = false [dependencies.hex] version = "0.4.3" default-features = false [dependencies.num] version = "0.4.0" default-features = false [dependencies.num-bigint] version = "0.4.6" default-features = false [dependencies.num-traits] version = "0.2.19" default-features = false [dependencies.serde] version = "1.0.151" features = [ "derive", "rc", ] default-features = false [dependencies.serde_json] version = "1.0.79" optional = true [dependencies.sha2] version = "0.10.8" default-features = false [dev-dependencies.criterion] version = "0.3" [dev-dependencies.rand] version = "0.8" [features] bls = [ "std", "bls12_381", ] default = [ "std", "bls", ] std = [ "serde/std", "num/std", "num-bigint/std", "num-traits/std", "borsh/std", "hex/std", ]