-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
49 lines (41 loc) · 1.47 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
[package]
name = "merkle"
version = "1.11.1-pre"
authors = [
"Frederic Jacobs <[email protected]>",
"Dylan Bourgeois <[email protected]>",
"Romain Ruetschi <[email protected]>"
]
edition = "2018"
description = "Merkle tree implementation with support for generation of inclusion proofs."
license = "BSD-3-Clause"
documentation = "https://docs.rs/merkle"
homepage = "https://github.com/SpinResearch/merkle.rs"
repository = "https://github.com/SpinResearch/merkle.rs"
readme = "README.md"
keywords = ["merkle", "merkle-tree"]
categories = ["data-structures", "cryptography"]
[package.metadata.release]
sign-commit = true
sign-tag = true
pre-release-commit-message = "Release version {{version}}."
post-release-commit-message = "Start next development iteration {{version}}."
tag-message = "Release version {{version}}."
dev-version-ext = "pre"
[[bench]]
name = "proof"
harness = false
[dependencies]
ring = "0.16.15"
protobuf = { version = "2.16.2", optional = true }
serde = { version = "1.0.114", optional = true }
serde_derive = { version = "1.0.114", optional = true }
[build-dependencies]
protoc-rust = { version = "2.16.2", optional = true }
[dev-dependencies]
serde_json = "1.0.56"
criterion = "0.3.3"
rand = "0.7.3"
[features]
serialization-protobuf = [ "protobuf", "protoc-rust" ]
serialization-serde = [ "serde", "serde_derive" ]