forked from confidential-containers/trustee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (46 loc) · 1.34 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
[package]
name = "reference-value-provider-service"
version = "0.1.0"
edition = "2021"
[features]
default = [ "bin" ]
# Used to build rvps binary
bin = [ "clap", "config", "env_logger", "prost", "shadow-rs", "tokio", "tonic" ]
# Support in-toto provenance (not ready)
in-toto =[ "path-clean", "sha2" ]
[[bin]]
name = "rvps"
required-features = [ "bin" ]
[[bin]]
name = "rvps-tool"
required-features = [ "bin" ]
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
base64.workspace = true
cfg-if.workspace = true
chrono = { workspace = true, features = [ "serde" ] }
clap = { workspace = true, optional = true }
config = { workspace = true, optional = true }
env_logger = { workspace = true, optional = true }
log.workspace = true
path-clean = { version = "1.0.1", optional = true }
prost = { workspace = true, optional = true }
serde.workspace = true
serde_json.workspace = true
sha2 = { workspace = true, optional = true }
shadow-rs = { workspace = true, optional = true }
sled = "0.34.7"
strum.workspace = true
tempfile.workspace = true
tokio = { workspace = true, optional = true }
tonic = { workspace = true, optional = true }
[build-dependencies]
shadow-rs.workspace = true
tonic-build.workspace = true
[dev-dependencies]
assert-json-diff.workspace = true
rstest.workspace = true
serial_test.workspace = true
tokio.workspace = true
walkdir = "2.3.2"