forked from antouhou/rs-merkle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (23 loc) · 973 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "rs_merkle"
version = "1.4.2"
authors = ["Anton Suprunchuk <[email protected]>"]
description = "The most advanced Merkle Tree library for Rust. Supports creating and verifying proofs, multi-proofs, as well as advanced features, such as tree diffs, transactional changes, and rollbacks"
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/antouhou/rs-merkle"
documentation = "https://docs.rs/rs_merkle/"
readme = "README.md"
keywords = ["merkle", "tree", "proof", "hash", "multiproof"]
exclude = ["/ci/*", "/scripts/*", "/.github/*", "/bors.toml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sha2 = { version = "0.10", default-features = false }
serde = { version = "1", optional = true, features = ["derive"] }
# standard crate data is left out
[dev-dependencies]
rayon = "1.5.1"
[features]
default = ['std']
std = ["sha2/std"]
serde = ["dep:serde"]