forked from apache/teaclave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 1.2 KB
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
[package]
name = "teaclave_types"
version = "0.1.0"
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
description = "Teaclave types"
license = "Apache-2.0"
edition = "2018"
[features]
default = [
"protected_fs_rs/default",
]
mesalock_sgx = [
"sgx_tstd",
"teaclave_crypto/mesalock_sgx",
"protected_fs_rs/mesalock_sgx",
]
enclave_unit_test = ["teaclave_test_utils/mesalock_sgx"]
[dependencies]
log = { version = "0.4.6", features = ["release_max_level_info"] }
anyhow = { version = "1.0.26" }
sgx_types = { version = "1.1.2" }
rand = { version = "0.7.0" }
hex = { version = "0.4.0" }
serde = { version = "1.0.92", features = ["derive"] }
serde_json = { version = "1.0.39" }
toml = { version = "0.5.3" }
ring = { version = "0.16.5" }
thiserror = { version = "1.0.9" }
url = { version = "2.1.1", features = ["serde"]}
uuid = { version = "0.8.1", features = ["v4", "serde"] }
protected_fs_rs = { path = "../common/protected_fs_rs" }
teaclave_test_utils = { path = "../tests/utils", optional = true }
teaclave_crypto = { path = "../crypto" }
sgx_tstd = { version = "1.1.2", features = ["net", "backtrace"], optional = true }