• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2
3name = "protobuf"
4version = "2.27.1"
5authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
6edition = "2018"
7license = "MIT"
8homepage = "https://github.com/stepancheg/rust-protobuf/"
9repository = "https://github.com/stepancheg/rust-protobuf/"
10documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README.md"
11description = """
12Rust implementation of Google protocol buffers
13"""
14
15[lib]
16doctest = false
17bench = false
18
19[features]
20with-bytes = ["bytes"]
21with-serde = ["serde", "serde_derive"]
22
23[dependencies]
24bytes = { version = "1.0", optional = true }
25serde        = { version = "1.0", features = ["derive"], optional = true }
26serde_derive = { version = "1.0", optional = true }
27
28[package.metadata.docs.rs]
29all-features = true
30