forked from tokio-rs/prost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 984 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
36
37
38
39
40
41
42
[package]
name = "prost"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.3.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
documentation = "https://docs.rs/prost"
readme = "README.md"
description = "A Protocol Buffers implementation for the Rust Language."
keywords = ["protobuf", "serialization"]
categories = ["encoding"]
[badges]
travis-ci = { repository = "danburkert/prost" }
appveyor = { repository = "danburkert/prost" }
[workspace]
members = [
"benchmarks",
"conformance",
"prost-build",
"prost-derive",
"prost-types",
"protobuf",
"tests",
]
exclude = [
# The fuzz crate can't be compiled or tested without the 'cargo fuzz' command,
# so exclude it from normal builds.
"fuzz",
]
[dependencies]
byteorder = "1"
bytes = "0.4"
[dev-dependencies]
env_logger = "0.5"
log = "0.4"
prost-derive = { version = "0.3.0", path = "prost-derive" }
quickcheck = "0.6"