-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
60 lines (55 loc) · 1.2 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
[workspace]
members = [
"src/api",
"src/bin",
"src/client",
"src/engine",
"src/macro",
"src/parser",
"src/rock",
"src/runtime",
"src/schema",
"src/server",
# layers
"layers/etcd",
# third
"third/raft-engine",
"third/raft-rs",
"third/raft-rs/proto",
]
resolver = "2"
[workspace.package]
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://sekas.w41ter.github.io"
repository = "https://github.com/w41ter/sekas"
[workspace.dependencies]
async-stream = "0.3"
bytes = "1"
crc32fast = "1.3"
derivative = "2.2"
futures = "0.3"
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
num_cpus = "1.13"
paste = "1.0"
prometheus = "0.13"
prometheus-static-metric = "0.5"
prost = "0.11"
prost-types = "0.11"
rand = "0.8"
rustyline = { version = "13.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tonic = "0.8"
thiserror = "1.0"
toml = "0.5"
tokio = { version = "1.21", features = ["full"] }
tokio-stream = { version = "0.1", features = ["net"] }
tracing = "0.1"
# for build
prost-build = "0.11"
tonic-build = "0.8"
protoc-build = { git = "https://github.com/w41ter/protoc-build.git", rev = "v3.21.5" }