-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.33 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "merkletree"
version = "0.21.0"
authors = [
"nemo <nemo@protocol.ai>",
"schomatis",
"Ivan Prisyazhnyy <john.koepi@gmail.com>"
]
description = "Light merkle tree implementation with SPV support and dependency agnostic."
license = "BSD-3-Clause"
homepage = "https://github.com/filecoin-project/merkle_light"
repository = "https://github.com/filecoin-project/merkle_light"
documentation = "https://docs.rs/merkletree"
readme = "README.md"
keywords = ["merkle", "merkle-tree"]
categories = ["data-structures", "cryptography"]
edition = "2018"
[package.metadata.release]
pre-release-commit-message = "chore(release): release {{version}}"
pro-release-commit-message = "chore(release): starting development cycle for {{next_version}}"
[dependencies]
rayon = "1.0.0"
memmap = "0.7"
ring = { version = "^0.14.1", optional = true }
rust-crypto = { version = "^0.2.36", optional = true }
rand = "0.7.3"
arrayref = "0.3.5"
tempdir = "0.3.7"
tempfile = "3.0.7"
positioned-io = "0.2"
log = "0.4.7"
serde = { version = "1.0", features = ["derive"]}
anyhow = "1.0.23"
typenum = "1.11.2"
rust-s3 = { path = "../rust-s3/s3" }
tokio = "0.2"
[dev-dependencies]
byteorder = "1.3.1"
env_logger = "0.7.1"
[features]
default = []
bitcoin = ["ring", "rust-crypto"]
chaincore = ["rust-crypto"]
crypto_bench = ["rust-crypto", "ring"]