1"""Module containing definitions of all Prost providers.""" 2 3ProstProtoInfo = provider( 4 doc = "Rust Prost provider info", 5 fields = { 6 "dep_variant_info": "DepVariantInfo: For the compiled Rust gencode (also covers its " + 7 "transitive dependencies)", 8 "package_info": "File: A newline delimited file of `--extern_path` values for protoc.", 9 "transitive_dep_infos": "depset[DepVariantInfo]: Transitive dependencies of the compiled crate.", 10 }, 11) 12