-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
28 lines (25 loc) · 845 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
28
[package]
name = "ct-merkle"
repository = "https://github.com/rozbb/ct-merkle"
documentation = "https://docs.rs/ct-merkle"
description = "An implementation of the append-only log described in the Certificate Transparency specification (RFC 6962)"
readme = "README.md"
version = "0.1.0"
edition = "2021"
license = "MIT/Apache-2.0"
keywords = ["crypto", "tls", "pki", "ct", "hash"]
categories = ["no-std", "cryptography", "network-programming", "compression"]
[dependencies]
digest = "0.10"
generic-array = "0.14"
serde = { version = "1", optional = true, features = [ "derive" ] }
subtle = { version = "2", default-features = false }
[features]
default = []
std = [ "digest/std" ]
serde = [ "dep:serde", "generic-array/serde" ]
[dev-dependencies]
hex = "0.4"
rand = { version = "0.8", features = [ "std_rng" ] }
serde_json = "1"
sha2 = "0.10"