-
Notifications
You must be signed in to change notification settings - Fork 93
/
Cargo.toml
72 lines (71 loc) · 1.7 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
[workspace]
resolver = "2"
members = [
"api-server-rest",
"attestation-agent/attestation-agent",
"attestation-agent/kbc",
"attestation-agent/kbs_protocol",
"attestation-agent/attester",
"attestation-agent/deps/resource_uri",
"attestation-agent/deps/crypto",
"attestation-agent/deps/sev",
"attestation-agent/coco_keyprovider",
"confidential-data-hub/hub",
"confidential-data-hub/kms",
"confidential-data-hub/image",
"confidential-data-hub/secret",
"confidential-data-hub/storage",
"image-rs",
"ocicrypt-rs",
]
[workspace.dependencies]
aes = "0.8.3"
aes-gcm = "0.10.2"
anyhow = "1.0"
assert-json-diff = "2.0"
assert_cmd = "2"
async-trait = "0.1.83"
base64 = "0.22.1"
base64-serde = "0.7"
bincode = "1.3.3"
cfg-if = "1.0.0"
chrono = "0.4.26"
clap = "~4.2.7"
config = "0.13.4"
const_format = "0.2.33"
ctr = "0.9.2"
env_logger = "0.11.5"
hex = "0.4.3"
hmac = "0.12.1"
jwt-simple = { version = "0.12", default-features = false, features = ["pure-rust"] }
kbs-types = "0.7.0"
lazy_static = "1.5.0"
log = "0.4.22"
nix = "0.29"
openssl = "0.10"
prost = "0.13"
protobuf = "3.5.1"
rand = "0.8.5"
reqwest = { version = "0.12", default-features = false }
resource_uri = { path = "attestation-agent/deps/resource_uri" }
ring = "0.17"
rsa = "0.9.2"
rstest = "0.17"
serde = { version = "1.0", features = ["derive"] }
serde_with = { version = "1.11.0", features = ["base64"] }
serde_json = "1.0"
serial_test = "3"
sha2 = "0.10.7"
strum = { version = "0.26", features = ["derive"] }
tempfile = "3.13"
testcontainers = "0.14"
thiserror = "1.0"
tokio = "1.41"
toml = "0.8.19"
tonic = "0.12"
tonic-build = "0.12"
ttrpc = "0.8.2"
ttrpc-codegen = "0.4.2"
url = "2.5.2"
uuid = "1"
zeroize = "1.5.7"