-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 965 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 965 Bytes
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
[package]
name = "committable"
version = "0.2.5"
edition = "2021"
rust-version = "1.65.0"
authors = ["Espresso Systems <hello@espressosys.com>"]
repository = "https://github.com/EspressoSystems/commit.git"
description = "Keccak256-based structured commitments"
license = "MIT"
[features]
default = ["ark-serialize", "serde"]
ark-serialize = [
"dep:ark-serialize",
"tagged-base64",
"tagged-base64/ark-serialize",
]
serde = ["dep:serde", "tagged-base64", "tagged-base64/serde", "ark-serialize"]
[dependencies]
arbitrary = { version = "1.0", features = ["derive"] }
ark-serialize = { version = "0.5", optional = true, features = ["derive"] }
bitvec = "1.0"
derivative = "2.2"
derive_more = "0.99"
funty = "2.0"
hex = "0.4.3"
serde = { version = "1.0", optional = true, features = ["derive"] }
sha3 = "^0.10"
tagged-base64 = { version = "0.4.1", optional = true, default-features = false }
[dev-dependencies]
quickcheck = "1.0"
quickcheck_macros = "1.0"