-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (78 loc) · 2.45 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (78 loc) · 2.45 KB
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
74
75
76
77
78
79
80
81
[workspace]
members = [
"kbs",
"attestation-service",
"rvps",
"tools/kbs-client",
"deps/verifier",
"deps/eventlog",
"integration-tests",
"tools/trustee-cli",
"deps/key-value-storage",
"deps/policy-engine",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["The Confidential Container Authors"]
description = "Confidential Container Tools and Components for the tenant side"
documentation = "https://github.com/confidential-containers/kbs"
edition = "2021"
[workspace.dependencies]
actix-web = "4"
actix-web-httpauth = "0.8.2"
anyhow = "1.0"
assert-json-diff = "2.0.2"
async-trait = "0.1.88"
base64 = "0.22.1"
cfg-if = "1.0.4"
chrono = "0.4.45"
clap = { version = "4", features = ["derive"] }
config = "0.15.23"
const_format = "0.2.36"
educe = "0.7"
ear = "0.5.0"
hex = "0.4.3"
kbs_protocol = { git = "https://github.com/confidential-containers/guest-components.git", rev = "1fcebcb66a3c21b62e852819d5b55212c90eba2a", default-features = false }
kbs-types = "0.15.0"
kms = { git = "https://github.com/confidential-containers/guest-components.git", rev = "1fcebcb66a3c21b62e852819d5b55212c90eba2a", default-features = false }
jsonwebtoken = { version = "10", default-features = false, features = [
"aws_lc_rs",
"use_pem",
] }
mobc = "0.9.0"
openssl = "0.10.80"
p256 = "0.13.2"
p521 = "0.13.2"
prost = "0.14"
regorus = { version = "0.10.1", default-features = false, features = [
"regex",
"base64",
"time",
"std",
] }
reqwest = { version = "0.13", default-features = false, features = ["json"] }
rstest = "0.26.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.150"
serde_with = { version = "3.21.0", features = ["base64", "hex"] }
serial_test = { version = "3.5.0", features = ["async"] }
sha2 = "0.11"
shadow-rs = "2.0.0"
strum = { version = "0.28", features = ["derive"] }
thiserror = "2.0"
tokio = { version = "1", features = ["full"], default-features = false }
toml = "1.1.2"
tempfile = "3.27.0"
tonic = { version = "0.14", features = ["tls-webpki-roots"] }
tonic-health = "0.14"
tonic-prost = "0.14"
tonic-prost-build = "0.14"
rsa = { version = "0.9.10", features = ["sha2"] }
time = { version = "0.3.47", features = ["std"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
uuid = { version = "1.23.3", features = ["v4"] }
zeroize = "1"
[patch.crates-io]
sev = { git = "https://github.com/virtee/sev", rev = "d487809188c3c92e397bc92e2cb2a85eb982c980" }