• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "protobuf"
15version = "2.27.1"
16authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
17description = """
18Rust implementation of Google protocol buffers
19"""
20homepage = "https://github.com/stepancheg/rust-protobuf/"
21documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README.md"
22license = "MIT"
23repository = "https://github.com/stepancheg/rust-protobuf/"
24
25[package.metadata.docs.rs]
26all-features = true
27
28[lib]
29doctest = false
30bench = false
31
32[dependencies.bytes]
33version = "1.0"
34optional = true
35
36[dependencies.serde]
37version = "1.0"
38features = ["derive"]
39optional = true
40
41[dependencies.serde_derive]
42version = "1.0"
43optional = true
44
45[features]
46with-bytes = ["bytes"]
47with-serde = [
48    "serde",
49    "serde_derive",
50]
51