forked from aws/aws-nitro-enclaves-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (41 loc) · 995 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
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "nitro-cli"
version = "1.2.0"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
rust-version = "1.58"
[dependencies]
serde = { version = ">=1.0", features = ["derive"] }
chrono = "0.4"
clap = "2.33"
inotify = "0.9"
serde_json = "1.0"
nix = "0.23"
log = "0.4"
libc = { version = ">=0.2.69" }
flexi_logger = "0.15"
page_size = "0.4"
signal-hook = "0.3"
serde_cbor = "0.11"
driver-bindings = { path = "./driver-bindings" }
aws-nitro-enclaves-image-format = "0.1"
eif_loader = { path = "./eif_loader" }
enclave_build = { path = "./enclave_build" }
openssl = "0.10"
vsock = "0.2"
vmm-sys-util = "0.8.0"
sha2 = "0.9.5"
hex = "0.4"
lazy_static = "1.4.0"
[build-dependencies]
bindgen = { version=">=0.54" }
[dev-dependencies]
log = "0.4"
num-derive = "0.3"
num-traits = "0.2"
tempfile = "3.1"
[workspace]
members = [".", "driver-bindings", "eif_loader", "enclave_build", "vsock_proxy"]
[features]
default = []