forked from aws/aws-nitro-enclaves-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 805 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
[package]
name = "nitro-cli"
version = "0.1.0"
authors = ["Alexandru Gheorghe <[email protected]>"]
edition = "2018"
[dependencies]
serde = { version = ">=1.0", features = ["derive"] }
chrono = "0.4"
clap = "2.33"
inotify = "0.7"
memmap = "0.7"
serde_json = "1.0"
nix = "0.15"
log = "0.4"
libc = { version = ">=0.2.69" }
flexi_logger = "0.15"
page_size = "0.4"
signal-hook = "0.1"
serde_cbor = "0.10"
eif_loader = { path = "./eif_loader" }
enclave_build = { path = "./enclave_build" }
openssl = "0.10"
vsock = "0.1.5"
lazy_static = "1.4.0"
[build-dependencies]
bindgen = { version=">=0.54" }
[dev-dependencies]
log = "0.4"
num-derive = "0.2"
num-traits = "0.2"
tempfile = "3.1"
[workspace]
members = [".", "eif_defs", "eif_loader", "eif_utils", "enclave_build", "vsock_proxy"]
[features]
default = []