aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 8f3b2b844a8a49ea1b215092b97c414080afd1e1 (plain)
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
[package]

name = "protobuf"
version = "2.14.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
license = "MIT"
homepage = "https://github.com/stepancheg/rust-protobuf/"
repository = "https://github.com/stepancheg/rust-protobuf/"
documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README.md"
description = """
Rust implementation of Google protocol buffers
"""

[lib]
doctest = false
bench = false

[features]
with-bytes = ["bytes"]
with-serde = ["serde", "serde_derive"]

[dependencies]
bytes = { version = "0.5", optional = true }
serde        = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }

[package.metadata.docs.rs]
all-features = true