-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 1.54 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
# SPDX-FileCopyrightText: © 2024-2025 Phala Network <dstack@phala.network>
#
# SPDX-License-Identifier: Apache-2.0
[package]
name = "dstack-kms"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
anyhow.workspace = true
chrono.workspace = true
clap.workspace = true
fs-err.workspace = true
git-version.workspace = true
hex.workspace = true
hex_fmt.workspace = true
rocket.workspace = true
serde.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
x25519-dalek.workspace = true
yasna.workspace = true
aes-siv.workspace = true
dstack-kms-rpc.workspace = true
ra-rpc = { workspace = true, features = ["client", "rocket"] }
ra-tls.workspace = true
load_config.workspace = true
serde-human-bytes.workspace = true
reqwest = { workspace = true, features = ["json"] }
sha2.workspace = true
sha3.workspace = true
k256.workspace = true
rand.workspace = true
dstack-guest-agent-rpc.workspace = true
http-client = { workspace = true, features = ["prpc"] }
scale.workspace = true
x509-parser = { workspace = true, features = ["verify"] }
ring.workspace = true
safe-write.workspace = true
serde_json.workspace = true
dstack-types.workspace = true
tokio = { workspace = true, features = ["process"] }
tempfile.workspace = true
serde-duration.workspace = true
dstack-verifier = { workspace = true, default-features = false }
dstack-mr.workspace = true
# AMD SEV-SNP attestation verification (cert chain + report signature)
sev = { workspace = true }
base64.workspace = true
[features]
default = []