blob: 862c5a16a07287dfee4bbed11e9699430e9edabe [file] [log] [blame]
Jeff Vander Stoep5012cb72023-03-09 09:28:43 +01001# 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 = "2021"
14name = "protobuf-parse"
15version = "3.2.0"
16authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
17description = """
18Parse `.proto` files.
19
20Files are parsed into a `protobuf::descriptor::FileDescriptorSet` object using either:
21* pure rust parser (no dependencies)
22* `protoc` binary (more reliable and compatible with Google's implementation)
23"""
24homepage = "https://github.com/stepancheg/rust-protobuf/tree/master/protobuf-parse/"
25readme = "README.md"
26license = "MIT"
27repository = "https://github.com/stepancheg/rust-protobuf/tree/master/protobuf-parse/"
28
29[package.metadata.docs.rs]
30all-features = true
31
32[lib]
33doctest = false
34
35[[bin]]
36name = "parse-and-typecheck"
37path = "src/bin/parse-and-typecheck.rs"
38test = false
39
40[dependencies.anyhow]
41version = "1.0.53"
42
43[dependencies.indexmap]
44version = "1.8.0"
45
46[dependencies.log]
47version = "0.4"
48
49[dependencies.protobuf]
50version = "=3.2.0"
51
52[dependencies.protobuf-support]
53version = "=3.2.0"
54
55[dependencies.tempfile]
56version = "3.2.0"
57
58[dependencies.thiserror]
59version = "1.0.30"
60
61[dependencies.which]
62version = "4.0"