1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies 7# 8# If you believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "protobuf" 16version = "2.22.1" 17authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"] 18description = "Rust implementation of Google protocol buffers\n" 19homepage = "https://github.com/stepancheg/rust-protobuf/" 20documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README.md" 21license = "MIT" 22repository = "https://github.com/stepancheg/rust-protobuf/" 23[package.metadata.docs.rs] 24all-features = true 25 26[lib] 27doctest = false 28bench = false 29[dependencies.bytes] 30version = "1.0" 31optional = true 32 33[dependencies.serde] 34version = "1.0" 35features = ["derive"] 36optional = true 37 38[dependencies.serde_derive] 39version = "1.0" 40optional = true 41 42[features] 43with-bytes = ["bytes"] 44with-serde = ["serde", "serde_derive"] 45