-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 988 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "ray"
version = "0.1.0"
authors = ["Sergei Fomin <[email protected]>"]
edition = "2018"
[[bin]]
name = "rayd"
path = "bin/server.rs"
[[bin]]
name = "ray"
path = "bin/client.rs"
[[bin]]
name = "ray-benchmark"
path = "bin/benchmark.rs"
[dependencies]
bincode = "1.2"
byte_string = "1.0"
bytes = "0.4"
byteorder = "1.3"
chrono = "0.4"
clap = "2.33"
crossbeam = "0.7"
error-chain = "0.12"
futures = "0.3"
libc = "0.2"
lazy_static = "1.4"
log = { version = "0.4", features = ["std", "release_max_level_debug"] }
log-panics = { version = "2.0", features = ["with-backtrace"] }
metrics = "0.12"
metrics-core = "0.5"
metrics-runtime = "0.13"
nix = "0.17"
num_cpus = "1.11"
prost = "0.6"
rand = "0.7"
simplelog = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
tokio = { version = "0.2", features = ["macros", "rt-threaded", "blocking"] }
tonic = "0.1.0"
uuid = { version = "0.8", features = ["v4"] }
[build-dependencies]
tonic-build = "0.1.0"