-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (49 loc) · 1.27 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
[package]
name = "uring"
version = "0.1.0"
authors = ["The Tremor Team"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["ws-proto", "uring-common", "mring-node", "gdrl", "protocol-driver"]
[dependencies]
ws-proto = { path = "ws-proto" }
uring-common = { path = "uring-common" }
gdrl = { path = "gdrl" }
protocol-driver = { path = "protocol-driver" }
raft = "0.6.0"
rocksdb = "0.18"
slog = { version = "2", features = [
"max_level_info",
"release_max_level_warn",
] }
slog-json = "2"
slog-term = "*"
slog-async = "*"
crossbeam-channel = "0.5"
byteorder = "1.3"
base64 = "0.13"
bytes = "1"
clap = "2"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
protobuf = "2"
url = "*"
async-tungstenite = { version = "0.17", features = ["async-std-runtime"] }
async-std = { version = "*", features = ["unstable"] }
async-tls = "*"
futures = "0.3"
async-trait = "0.1"
http-service-hyper = "0.4.1"
tide = "0.16"
http = "0.2"
[dependencies.tungstenite]
version = "0.17"
default-features = false
[patch.crates-io]
#raft = { git = 'https://github.com/tikv/raft-rs' }
#hyper = { git = 'https://github.com/hyperium/hyper' }
#tide = { git = 'https://github.com/http-rs/tide' }
[features]
default = []