-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 975 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
36
[package]
categories = ["cryptography", "embedded"]
edition = "2021"
keywords = ["did", "embedded", "iot", "root-of-trust"]
name = "nodex-didcomm"
readme = "README.md"
version = "0.2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
cuid = "1.3.2"
data-encoding = "2.6.0"
didcomm-rs = { git = "https://github.com/nodecross/didcomm-rs.git", tag = "v0.8.1", default-features = false, features = ["raw-crypto"] }
hex = "0.4.3"
http = "1.1.0"
k256 = { version = "0.13.3", features = [
"ecdh",
"ecdsa",
"serde",
"sha256",
] }
rand_core = "0.6.4"
serde = { version = "1.0.204", features = ["derive"] }
serde_jcs = "0.1.0"
serde_json = "1.0.120"
sha2 = "0.10.8"
thiserror = "1.0.63"
trait-variant = "0.1.2"
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
zeroize = "1.8.1"
[dev-dependencies]
actix-rt = "2.10.0"
rand = "0.8.5"