# 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 = "accumulators" version = "0.4.9" build = false exclude = [ ".github", ".vscode", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Complete package of multiple Accumulators with Stores and hashing functions (Hashers)" homepage = "https://herodotus.dev/" documentation = "https://github.com/HerodotusDev/rust-accumulators/blob/main/README.md" readme = "README.md" keywords = [ "accumulators", "mmr", "merkle", "tree", "incremental", ] categories = [ "cryptography", "data-structures", "database", ] license-file = "LICENSE" repository = "https://github.com/HerodotusDev/rust-accumulators" [lib] name = "accumulators" path = "src/lib.rs" [[test]] name = "hasher" path = "tests/hasher/main.rs" [[test]] name = "merkle_tree" path = "tests/merkle_tree/main.rs" [[test]] name = "mmr" path = "tests/mmr/main.rs" [[test]] name = "store" path = "tests/store/main.rs" [[bench]] name = "incremental_benchmark" path = "benches/incremental_benchmark.rs" harness = false [[bench]] name = "mmr_benchmark" path = "benches/mmr_benchmark.rs" harness = false [dependencies.async-trait] version = "0.1.74" [dependencies.hex] version = "0.4.3" [dependencies.indexmap] version = "2.1.0" [dependencies.num-bigint] version = "0.4.4" [dependencies.num-traits] version = "0.2.17" [dependencies.parking_lot] version = "0.12.1" [dependencies.sqlx] version = "0.7" features = [ "runtime-tokio", "sqlite", ] [dependencies.starknet] version = "0.6.0" [dependencies.starknet-crypto] version = "0.6.0" [dependencies.strum] version = "0.25" [dependencies.strum_macros] version = "0.25" [dependencies.thiserror] version = "1.0" [dependencies.tiny-keccak] version = "2.0.2" [dependencies.tokio] version = "1.33.0" features = ["full"] [dependencies.uuid] version = "1.4.1" features = ["v4"] [dev-dependencies.criterion] version = "0.4" features = [ "html_reports", "async", ] [features] all = [ "store", "sqlite", "memory", "hasher", "keccak", "poseidon", "pedersen", "mmr", "stacked_mmr", "draft_mmr", "merkle_tree", "incremental_merkle_tree", ] default = [ "store", "hasher", ] draft_mmr = ["stacked_mmr"] hasher = [] incremental_merkle_tree = ["merkle_tree"] keccak = ["hasher"] memory = ["store"] merkle_tree = [ "hasher", "store", ] mmr = [ "hasher", "store", ] pedersen = ["hasher"] poseidon = ["hasher"] sqlite = ["store"] stacked_mmr = ["mmr"] store = []