blob: c1be2f7c92677f2f1957cdc63aabb58487f7c110 [file] [log] [blame]
Chih-Hung Hsiehcfc3a232020-06-10 20:13:05 -07001[package]
2
3name = "protobuf"
David LeGare793d84b2022-03-02 16:21:10 +00004version = "2.27.1"
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]
Haibo Huang914311b2021-01-07 18:06:15 -080024bytes = { version = "1.0", optional = true }
Haibo Huangca95bfd2021-02-09 17:48:30 -080025serde = { version = "1.0", features = ["derive"], optional = true }
Chih-Hung Hsiehcfc3a232020-06-10 20:13:05 -070026serde_derive = { version = "1.0", optional = true }
27
28[package.metadata.docs.rs]
29all-features = true