-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
86 lines (73 loc) · 2.05 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "vega"
version = "0.1.0"
authors = ["raja <rajasekar3eg@gmail.com>", "Xiang Li <Xiang.Leee@outlook.com>"]
edition = "2018"
build = "build.rs"
[lib]
name = "vega"
[features]
aws_connectors = ["rusoto_core", "rusoto_s3"]
[dependencies]
async-trait = "0.1.30"
crossbeam = "0.7.3"
dashmap = "4"
envy = "^0.4.1"
fasthash = "0.4.0"
futures = { version = "0.3.4" }
hyper = { version = "0.14.19", features = ["client", "server", "http2", "tcp"]}
http = "0.2.8"
itertools = "0.9.0"
log = "0.4.8"
lazy_static = "1.4.0"
libc = "0.2"
num_cpus = "1.13.0"
ordered-float = "2.0"
once_cell = "1.3.1"
parking_lot = { version = "0.10.2", features = ["serde"] }
simplelog = "0.7.5"
statrs = "0.12.0"
thiserror = "1.0.15"
threadpool = "1.7.1"
toml = "0.5.6"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.9"
tokio-util = { version = "0.7", features = ["compat"] }
uuid = { version = "0.8", features = ["v4"] }
regex = "1.3.6"
# randomness
rand = "0.7.3"
rand_distr = "0.2"
rand_pcg = "0.2"
# serialization
bincode = "1.2.1"
capnp = "0.14.10"
capnp-futures = "0.14.1"
serde = { version = "1.0.125", features = ["rc"] }
serde_closure = { git = "https://github.com/AmbitionXiang/serde_closure", branch = "master" }
serde_derive = "1.0.125"
uriparse = "0.6.1"
# encryption
aes-gcm = "0.8.0"
# dynamic typing
downcast-rs = "1.1.1"
dyn-clone = "1.0.1"
serde_traitobject = "=0.2.7"
# optional features
## aws
rusoto_core = { version = "0.43", optional = true }
rusoto_s3 = { version = "0.43", optional = true }
# rust sgx sdk
sgx_types = { path = "../incubator-teaclave-sgx-sdk/sgx_types" }
sgx_urts = { path = "../incubator-teaclave-sgx-sdk/sgx_urts" }
[build-dependencies]
capnpc = "0.14"
[dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }
chrono = "0.4.11"
parquet = "0.15.1"
tempfile = "3"
[patch.'https://github.com/apache/teaclave-sgx-sdk.git']
sgx_alloc = { path = "../incubator-teaclave-sgx-sdk/sgx_alloc" }
sgx_types = { path = "../incubator-teaclave-sgx-sdk/sgx_types" }
sgx_urts = { path = "../incubator-teaclave-sgx-sdk/sgx_urts" }