[package] name = "protobuf-parse" version = "3.7.1" edition = "2021" authors = ["Stepan Koltsov "] license = "MIT" homepage = "https://github.com/stepancheg/rust-protobuf/tree/master/protobuf-parse/" repository = "https://github.com/stepancheg/rust-protobuf/tree/master/protobuf-parse/" description = """ Parse `.proto` files. Files are parsed into a `protobuf::descriptor::FileDescriptorSet` object using either: * pure rust parser (no dependencies) * `protoc` binary (more reliable and compatible with Google's implementation) """ [dependencies] tempfile = "3.2.0" log = "0.4" which = "4.0" anyhow = "1.0.53" thiserror = "1.0.30" indexmap = "2.0.0" protobuf = { path = "../protobuf", version = "=3.7.1" } protobuf-support = { path = "../protobuf-support", version = "=3.7.1" } [lib] # TODO: figure out what to do with bundled linked_hash_map doctest = false [[bin]] name = "parse-and-typecheck" path = "src/bin/parse-and-typecheck.rs" test = false [package.metadata.docs.rs] all-features = true