-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathCargo.toml
25 lines (21 loc) · 887 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
[package]
name = "enclave"
version = "0.1.0"
authors = ["John Barker <[email protected]>"]
[lib]
name = "enclave"
crate-type = ["staticlib"]
[features]
default = []
[dependencies]
num = { path = "/opt/rust-sgx-sdk/third_party/num" }
lazy_static = { path = "/opt/rust-sgx-sdk/third_party/lazy-static.rs" }
serde = { path = "/opt/rust-sgx-sdk/third_party/serde-rs/serde/serde" }
serde_derive = { path = "/opt/rust-sgx-sdk/third_party/serde-rs/serde/serde_derive" }
serde_json = { path = "/opt/rust-sgx-sdk/third_party/serde-rs/json"}
wabt-core = { path = "/opt/rust-sgx-sdk/third_party/wabt-rs-core" }
wasmi = { path = "/opt/rust-sgx-sdk/third_party/wasmi" }
base64 = { path = "/opt/rust-sgx-sdk/third_party/rust-base64" }
[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_tstd = { path = "/opt/rust-sgx-sdk/sgx_tstd" }
sgx_types = { path = "/opt/rust-sgx-sdk/sgx_types" }