[package]
edition = "2018"
name = "protobuf"
version = "2.9.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
description = "Rust implementation of Google protocol buffers\n"
homepage = "https://github.com/stepancheg/rust-protobuf/"
documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README.md"
license = "MIT"
repository = "https://github.com/stepancheg/rust-protobuf/"
[package.metadata.docs.rs]
all-features = true
[lib]
doctest = false
bench = false
[dependencies.bytes]
version = "0.4"
optional = true
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.serde_derive]
version = "1.0"
optional = true
[features]
with-bytes = ["bytes"]
with-serde = ["serde", "serde_derive"]