forked from fortanix/rust-sgx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (23 loc) · 815 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
[package]
name = "enclave"
description = "Secure enclave runtime and library"
version = "0.1.4"
authors = ["Jethro Beekman <[email protected]>"]
license = "AGPL-3.0+"
repository = "https://github.com/jethrogb/sgx-utils/tree/master/libenclave"
build = "build.rs"
[dependencies]
rlibc = "1.0.0" # MIT/Apache-2.0
spin = "0.4.2" # MIT
alloc_buddy_simple2 = { version = "0.1.2" } # Apache-2.0/MIT
sgx-isa = "0.1" # Apache-2.0/MIT
bitflags = { version = "0.5", features = ["no_std"] } # MIT/Apache-2.0
core_io = { version = "0.1", features = ["alloc","collections"] }
[build-dependencies]
gcc = "0.3" # MIT/Apache-2.0
[features]
# Only disable default features when running `cargo test`
default = ["allocator"]
allocator = ["alloc_buddy_simple2/use-as-rust-allocator"]
# Enable debugging runtime
debug = []