1[package] 2 3name = "protobuf" 4version = "3.2.0" 5authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"] 6edition = "2021" 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] 16bench = false 17 18[features] 19with-bytes = ["bytes"] 20default = [] 21 22[dependencies] 23bytes = { version = "1.1", optional = true } 24thiserror = "1.0.30" 25once_cell = "1.9.0" 26 27protobuf-support = { path = "../protobuf-support", version = "=3.2.0" } 28 29[package.metadata.docs.rs] 30all-features = true 31