forked from apache/dubbo-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (39 loc) · 818 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
[workspace]
resolver = "2"
members = [
"registry/zookeeper",
"registry/nacos",
"dubbo",
"examples/echo",
"examples/greeter",
"dubbo-build",
]
[workspace.dependencies]
pin-project = "1"
tokio = "1.0"
tower = "0.4"
tower-service = "0.3.1"
tower-layer = "0.3"
tokio-stream = "0.1"
tokio-util = "0.7"
socket2 = "0.4"
async-trait = "0.1"
dashmap = "5"
lazy_static = "1"
futures = "0.3"
serde = "1"
serde_json = "1"
urlencoding = "2.1.2"
registry-zookeeper = {path="./registry/zookeeper"}
registry-nacos = {path="./registry/nacos"}
anyhow = "1.0.66"
thiserror = "1.0.30"
dubbo = { path = "./dubbo/" }
bb8 = "0.8.0" # A connecton pool based on tokio
serde_yaml = "0.9.4" # yaml file parser
once_cell = "1.16.0"
itertools = "0.10.1"
bytes = "1.0"
prost-serde = "0.3.0"
prost-serde-derive = "0.1.2"
url = "2.5.0"