-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·43 lines (37 loc) · 1.27 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
[package]
name = "merkle-log"
version = "0.0.9"
authors = ["sunny-g <[email protected]>"]
description = "An implementation of the \"Merkle Tree-Structured Log\" defined in the paper \"Transparent Logs for Skeptical Clients.\" https://research.swtch.com/tlog"
repository = "https://github.com/sunny-g/merkle-log"
documentation = "https://docs.rs/merkle-log"
keywords = ["merkle-tree", "crypto"]
categories = ["cryptography", "data-structures"]
license = "MIT OR Apache-2.0"
edition = "2018"
rust-version = "1.60"
[dependencies]
core2 = { version = "0.4", default-features = false }
# optional
borsh = { version = "1.0.0-alpha.5", default-features = false, optional = true, features = [
"derive"
] }
digest = { version = "0.10", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
thiserror = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]
digest = { version = "0.10", default-features = false }
merkle-log = { path = ".", default-features = false, features = ["digest"] }
sha2 = "0.10"
[features]
default = ["std"]
std = [
"borsh?/std",
"core2/std",
"digest?/std",
"serde?/std",
"thiserror",
]
[package.metadata.docs.rs]
features = ["std", "digest"]
[workspace]