forked from tokio-rs/prost
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 878 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
[package]
name = "prost-build"
version = "0.6.1"
authors = ["Dan Burkert <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
documentation = "https://docs.rs/prost-build"
readme = "README.md"
description = "A Protocol Buffers implementation for the Rust Language."
edition = "2018"
[dependencies]
bytes = { version = "0.5", default-features = false }
heck = "0.3"
itertools = "0.9"
log = "0.4"
multimap = { version = "0.8", default-features = false }
petgraph = { version = "0.5", default-features = false }
prost = { version = "0.6.1", path = "..", default-features = false }
prost-types = { version = "0.6.1", path = "../prost-types", default-features = false }
tempfile = "3"
[build-dependencies]
which = { version = "4", default-features = false }
[dev-dependencies]
env_logger = { version = "0.7", default-features = false }