-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (24 loc) · 832 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
[package]
name = "dubbo-rust-helloworld"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "hello-server"
path = "src/server/main.rs"
[[bin]]
name = "hello-client"
path = "src/client/main.rs"
[dependencies]
http = "0.2"
http-body = "0.4.4"
futures-util = {version = "0.3", default-features = false}
tokio = { version = "1.0", features = [ "rt-multi-thread", "time", "fs", "macros", "net", "signal"] }
prost-derive = {version = "0.10", optional = true}
prost = "0.10.4"
prost-types = { version = "0.8", default-features = false }
async-trait = "0.1.56"
tokio-stream = "0.1"
dubbo = {git = "https://github.com/yang20150702/dubbo-rust.git"}
[build-dependencies]
dubbo-build = {git = "https://github.com/yang20150702/dubbo-rust.git"}