[package] name = "light_binary_merkle_tree" version = "0.1.0" edition = "2021" authors = ["mrwojack@proton.me"] license = "MIT" description = "A light-weight merkle tree implementation that allows to use any hashing algorithms from the packages sha2 and sha3" documentation = "https://docs.rs/merkle_rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = "1.0.174" serde_derive = "1.0.174" serde_json = "1.0.103" sha2 = "0.10.7" sha3 = "0.10.8" [profile.dev] opt-level = 0 [profile.release] opt-level = 3