-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (29 loc) · 890 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
[package]
name = "prost-stream"
version = "0.1.2"
edition = "2021"
authors = ["hangj <[email protected]>"]
readme = "README.md"
description = "prost stream"
keywords = ["prost", "prost-stream", "async-prost"]
license = "MIT"
repository = "https://github.com/hangj/prost-stream"
documentation = "https://docs.rs/prost-stream/"
exclude = ["/.github/*", "/.gitattributes", "/appveyor.yml", "/Changelog.md", "/clippy.toml", "/codecov.yml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
async = ["dep:tokio"]
[dependencies]
prost = "0.13.4"
thiserror = "2.0.11"
tokio = {version = "1.43.0", features = ["io-util"], optional = true}
[dev-dependencies]
tokio = {version = "1.43.0", features = ["full"]}
anyhow = "1.0.95"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]