-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
35 lines (32 loc) · 974 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
29
30
31
32
33
34
35
[package]
name = "cesride"
version = "0.6.5"
edition = "2021"
description = "Cryptographic primitives for use with Composable Event Streaming Representation (CESR)"
license = "Apache-2.0"
keywords = ["cesr", "keri", "acdc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "~1.0.86"
argon2 = "~0.5.3"
base64 = "~0.22.1"
blake2 = "~0.10.6"
blake3 = "~1.5.1"
chrono = { version = "~0.4.38", default-features = false, features = ["clock"] }
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
indexmap = "~2.2.6"
k256 = "~0.13.3"
lazy_static = "~1.5.0"
num-rational = "~0.4.2"
p256 = "~0.13.2"
rand_core = "~0.6.4"
regex = "~1.10.5"
serde_json = { version = "~1.0.118", features = ["preserve_order"] }
sha2 = "~0.10.8"
sha3 = "~0.10.8"
thiserror = "~1.0.61"
zeroize = { version = "~1.8.1", features = ["derive"] }
[dev-dependencies]
hex-literal = "~0.4.1"
hex = "~0.4.3"
rstest = "~0.21.0"