blob: 0323f2613dc29342c1ece433ed78df7907f256fc [file] [log] [blame]
Chih-Hung Hsiehcfc3a232020-06-10 20:13:05 -07001[package]
2
3name = "protobuf"
Haibo Huangd32e6ee2020-08-12 13:52:04 -07004version = "2.17.0"
Chih-Hung Hsiehcfc3a232020-06-10 20:13:05 -07005authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
Haibo Huangd32e6ee2020-08-12 13:52:04 -07006edition = "2018"
Chih-Hung Hsiehcfc3a232020-06-10 20:13:05 -07007license = "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 = "0.5", optional = true }
25serde = { version = "1.0", optional = true }
26serde_derive = { version = "1.0", optional = true }
27
28[package.metadata.docs.rs]
29all-features = true