-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
73 lines (68 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
exclude = ["e2e"]
members = ["agent", "protocol"]
resolver = "2"
[workspace.package]
authors = ["NodeX Authors <>"]
categories = ["cryptography", "embedded"]
description = "Automate device security provisioning with edge intelligence."
documentation = "https://docs.nodecross.io"
edition = "2021"
homepage = "https://nodecross.io"
keywords = ["did", "embedded", "iot", "root-of-trust"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/nodecross/nodex"
version = "3.3.0"
[workspace.dependencies]
actix-rt = "2.9.0"
actix-web = "4.9.0"
agent = { path = "./agent" }
anyhow = "1.0.92"
bytes = "1.8.0"
chrono = { version = "0.4", features = ["serde"] }
cuid = "1.3.2"
data-encoding = "2.6.0"
env_logger = { version = "0.11.3", features = ["color"] }
hex = "0.4.3"
hmac = "0.12.1"
http = "1.1.0"
k256 = { version = "0.13.3", features = ["ecdh", "ecdsa", "serde", "sha256"] }
log = "0.4.21"
mac_address = "1.1.5"
protocol = { path = "./protocol" }
rand_core = "0.6.4"
reqwest = { version = "0.12", features = [
"json",
"rustls-tls-native-roots",
], default-features = false }
rstest = "0.21.0"
rumqttc = "0.24.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_jcs = "0.1.0"
serde_json = "1.0.133"
sha2 = "0.10.8"
sysinfo = "0.30.13"
thiserror = "1.0.69"
tokio = { version = "1.41.1", features = ["full"] }
trait-variant = "0.1.2"
url = "2.5.4"
uuid = { version = "1.10.0", features = [
"fast-rng",
"macro-diagnostics",
"serde",
"v4",
] }
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
zeroize = "1.8.1"
zip = "2.2.0"
[profile.dev]
debug = true
panic = "abort"
[profile.test]
debug = true
opt-level = 3
panic = "abort"
[profile.release]
panic = "abort"
strip = true