-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
35 lines (31 loc) · 876 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
[package]
name = "async-prost"
version = "0.4.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
edition = "2018"
license = "MIT"
documentation = "https://docs.rs/async-prost"
repository = "https://github.com/tyrchen/async-prost"
homepage = "https://github.com/tyrchen/async-prost"
description = """
"""
readme = "README.md"
categories = ["development-tools"]
keywords = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.1.0"
byteorder = "1.4.3"
either = "1.6.1"
futures-core = "0.3.21"
futures-sink = "0.3.21"
prost = "0.10.4"
serde = "1.0.137"
tokio = { version = "1.18.2", features = ["net"] }
[dev-dependencies]
futures = "0.3.21"
futures-util = "0.3.21"
tokio = { version = "1.18.2", features = ["full"] }
tokio-tower = "0.6.0"
slab = "0.4.6"
tower = { version = "0.4.12", features = ["full"] }