24 lines
654 B
TOML
24 lines
654 B
TOML
[package]
|
|
name = "Occlum"
|
|
version = "0.0.1"
|
|
|
|
[lib]
|
|
name = "occlum_rs"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
log = "0.4"
|
|
lazy_static = { version = "1.1.0", features = ["spin_no_std"] } # Implies nightly
|
|
rcore-fs = { path = "../../deps/sefs/rcore-fs" }
|
|
rcore-fs-sefs = { path = "../../deps/sefs/rcore-fs-sefs" }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[target.'cfg(not(target_env = "sgx"))'.dependencies]
|
|
xmas-elf = { path = "../../deps/xmas-elf" }
|
|
sgx_types = { path = "../../deps/rust-sgx-sdk/sgx_types" }
|
|
sgx_tstd = { path = "../../deps/rust-sgx-sdk/sgx_tstd", features = ["backtrace"] }
|
|
sgx_trts = { path = "../../deps/rust-sgx-sdk/sgx_trts" }
|