-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (29 loc) · 1.14 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
[package]
name = "qos_core"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
qos_crypto = { path = "../qos_crypto" }
qos_hex = { path = "../qos_hex", features = ["serde"] }
qos_p256 = { path = "../qos_p256" }
qos_nsm = { path = "../qos_nsm", default-features = false }
nix = { version = "0.26", features = ["socket"], default-features = false }
libc = "=0.2.149"
borsh = { version = "1.0", features = ["std", "derive"] , default-features = false}
vsss-rs = { version = "4.3", default-features = false, features = ["std"] }
# For AWS Nitro
aws-nitro-enclaves-nsm-api = { version = "0.3", default-features = false }
serde_bytes = { version = "0.11", default-features = false }
serde = { version = "1", features = ["derive"], default-features = false }
[dev-dependencies]
qos_test_primitives = { path = "../qos_test_primitives" }
qos_p256 = { path = "../qos_p256", features = ["mock"] }
qos_nsm = { path = "../qos_nsm", features = ["mock"], default-features = false }
rustls = { version = "0.23.5" }
webpki-roots = { version = "0.26.1" }
[features]
# Support for VSOCK
vm = []
# Never use in production - support for mock NSM
mock = ["qos_nsm/mock"]