-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (31 loc) · 1023 Bytes
/
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
[workspace]
members = [
"rats-rs",
"intel-dcap",
"examples/*",
]
default-members = [
"rats-rs",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.1.0"
readme = "README.md"
license = "Apache-2.0"
[workspace.dependencies]
codec = {git = "https://github.com/ccc-spdm-tools/spdm-rs", branch = "main", features = ["alloc"]}
spdmlib = {git = "https://github.com/ccc-spdm-tools/spdm-rs", branch = "main", features = ["spdm-ring", "hashed-transcript-data", "downcast"]}
ring = "0.17.6"
spin = "0.9.8"
anyhow = "1.0.81"
log = "0.4.20"
env_logger = {version = "0.11.2", features = ["auto-color", "humantime", "regex"]}
[patch."https://github.com/ccc-spdm-tools/spdm-rs"]
codec = {path = 'deps/spdm-rs/codec'}
spdmlib = {path = 'deps/spdm-rs/spdmlib'}
# copy from Cargo.toml of spdm-rs
[patch.crates-io]
mbedtls-platform-support = {path = "deps/spdm-rs/spdmlib_crypto_mbedtls/mbedtls-platform-support"}
ring = {path = "deps/spdm-rs/external/ring"}
webpki = {path = "deps/spdm-rs/external/webpki"}