-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (48 loc) · 1.42 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
[package]
name = "hello-rust"
version = "0.1.0"
edition = "2018"
default-run = "hello-rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#[[bin]]
#name = "client"
#path = "src/client.rs"
[dependencies]
#jsonrpc-core = "17.1.0"
#jsonrpc-http-server = "17.1.0"
#jsonrpc-core-client = "17.1.0"
#jsonrpc-derive = "17.1.0"
#protobuf = "2"
#httpbis = { git = "https://github.com/stepancheg/rust-http2" }
#grpc ="*"
#grpc-protobuf="*"
#serde_derive = "1.0"
#tokio-stream = { version = "0.1", features = ["net"] }
async-std = "1.9.0"
async-stream = "0.3"
crossbeam-channel = "0.5.1"
env_logger = "0.8.4"
futures = { version = "0.3", default-features = false, features = ["alloc"] }
# tower = { version = "0.4" }
jsonrpc = "0.12.0"
jsonrpc-core = "17.1.0"
jsonrpc-core-client = "17.1.0"
jsonrpc-derive = "17.1.0"
jsonrpc-http-server = "17.1.0"
libp2p = "0.38.0"
log = "0.4"
prost = "0.7.0"
rand = "0.8.4"
#serde = { version = "1.0", features = ["derive"] }
#serde_json = "1.0"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
tokio = { version = "1.8.0", features = ["rt-multi-thread", "time", "fs", "macros", "net"] }
tonic = "0.4.3"
[dev-dependencies]
async-std = { version = "1.6.2", features = ["attributes"] }
tokio = { version = "1.8.0", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
[build-dependencies]
# protoc-rust-grpc = "0.8.2"
tonic-build = "0.4.2"