├── .editorconfig ├── .github ├── linters │ ├── .ecrc │ └── .markdown-lint.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rustfmt.toml ├── BUGREPORTING.md ├── CHANGELOG-before-3.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── ci-gen ├── Cargo.toml └── src │ ├── actions.rs │ ├── cargo_sync_readme.rs │ ├── ghwf.rs │ ├── install_protobuf.rs │ ├── main.rs │ └── yaml.rs ├── ci ├── env-debug.sh └── install-protobuf.sh ├── doc ├── FAQ.md └── past-present-future.md ├── google-protobuf-all-protos ├── README.md ├── protobuf │ └── protobuf-git │ │ ├── benchmarks │ │ ├── benchmarks.proto │ │ ├── datasets │ │ │ ├── google_message1 │ │ │ │ ├── proto2 │ │ │ │ │ └── benchmark_message1_proto2.proto │ │ │ │ └── proto3 │ │ │ │ │ └── benchmark_message1_proto3.proto │ │ │ ├── google_message2 │ │ │ │ └── benchmark_message2.proto │ │ │ ├── google_message3 │ │ │ │ ├── benchmark_message3.proto │ │ │ │ ├── benchmark_message3_1.proto │ │ │ │ ├── benchmark_message3_2.proto │ │ │ │ ├── benchmark_message3_3.proto │ │ │ │ ├── benchmark_message3_4.proto │ │ │ │ ├── benchmark_message3_5.proto │ │ │ │ ├── benchmark_message3_6.proto │ │ │ │ ├── benchmark_message3_7.proto │ │ │ │ └── benchmark_message3_8.proto │ │ │ └── google_message4 │ │ │ │ ├── benchmark_message4.proto │ │ │ │ ├── benchmark_message4_1.proto │ │ │ │ ├── benchmark_message4_2.proto │ │ │ │ └── benchmark_message4_3.proto │ │ └── google_size.proto │ │ ├── conformance │ │ └── conformance.proto │ │ ├── csharp │ │ ├── compatibility_tests │ │ │ └── v3.0.0 │ │ │ │ └── protos │ │ │ │ ├── csharp │ │ │ │ └── protos │ │ │ │ │ └── unittest_issues.proto │ │ │ │ └── src │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── map_unittest_proto3.proto │ │ │ │ ├── unittest_import_proto3.proto │ │ │ │ ├── unittest_import_public_proto3.proto │ │ │ │ ├── unittest_proto3.proto │ │ │ │ └── unittest_well_known_types.proto │ │ ├── protos │ │ │ ├── map_unittest_proto3.proto │ │ │ ├── old_extensions1.proto │ │ │ ├── old_extensions2.proto │ │ │ ├── unittest.proto │ │ │ ├── unittest_custom_options_proto3.proto │ │ │ ├── unittest_import.proto │ │ │ ├── unittest_import_proto3.proto │ │ │ ├── unittest_import_public.proto │ │ │ ├── unittest_import_public_proto3.proto │ │ │ ├── unittest_issue6936_a.proto │ │ │ ├── unittest_issue6936_b.proto │ │ │ ├── unittest_issue6936_c.proto │ │ │ ├── unittest_issues.proto │ │ │ ├── unittest_proto3.proto │ │ │ └── unittest_selfreferential_options.proto │ │ └── src │ │ │ └── Google.Protobuf.Benchmarks │ │ │ └── wrapper_benchmark_messages.proto │ │ ├── examples │ │ └── addressbook.proto │ │ ├── java │ │ ├── core │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── proto │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── any_test.proto │ │ │ │ ├── cached_field_size_test.proto │ │ │ │ ├── deprecated_file.proto │ │ │ │ ├── field_presence_test.proto │ │ │ │ ├── lazy_fields_lite.proto │ │ │ │ ├── lite_equals_and_hash.proto │ │ │ │ ├── map_for_proto2_lite_test.proto │ │ │ │ ├── map_for_proto2_test.proto │ │ │ │ ├── map_initialization_order_test.proto │ │ │ │ ├── map_lite_test.proto │ │ │ │ ├── map_test.proto │ │ │ │ ├── message_lite_extension_util_test.proto │ │ │ │ ├── multiple_files_test.proto │ │ │ │ ├── nested_builders_test.proto │ │ │ │ ├── nested_extension.proto │ │ │ │ ├── nested_extension_lite.proto │ │ │ │ ├── non_nested_extension.proto │ │ │ │ ├── non_nested_extension_lite.proto │ │ │ │ ├── outer_class_name_test.proto │ │ │ │ ├── outer_class_name_test2.proto │ │ │ │ ├── outer_class_name_test3.proto │ │ │ │ ├── packed_field_test.proto │ │ │ │ ├── proto2_message.proto │ │ │ │ ├── proto2_message_lite.proto │ │ │ │ ├── proto2_unknown_enum_values.proto │ │ │ │ ├── proto3_message.proto │ │ │ │ ├── proto3_message_lite.proto │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ ├── test_check_utf8.proto │ │ │ │ ├── test_check_utf8_size.proto │ │ │ │ ├── test_custom_options.proto │ │ │ │ └── wrappers_test.proto │ │ ├── kotlin │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── proto │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── evil_names_proto2.proto │ │ │ │ ├── evil_names_proto3.proto │ │ │ │ ├── example_extensible_message.proto │ │ │ │ └── multiple_files_proto3.proto │ │ └── util │ │ │ └── src │ │ │ └── test │ │ │ └── proto │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ └── util │ │ │ └── json_test.proto │ │ ├── js │ │ ├── commonjs │ │ │ ├── test6 │ │ │ │ └── test6.proto │ │ │ └── test7 │ │ │ │ └── test7.proto │ │ ├── compatibility_tests │ │ │ ├── v3.0.0 │ │ │ │ ├── commonjs │ │ │ │ │ ├── test6 │ │ │ │ │ │ └── test6.proto │ │ │ │ │ └── test7 │ │ │ │ │ │ └── test7.proto │ │ │ │ ├── data.proto │ │ │ │ ├── proto3_test.proto │ │ │ │ ├── test.proto │ │ │ │ ├── test2.proto │ │ │ │ ├── test3.proto │ │ │ │ ├── test4.proto │ │ │ │ ├── test5.proto │ │ │ │ ├── testbinary.proto │ │ │ │ └── testempty.proto │ │ │ └── v3.1.0 │ │ │ │ ├── commonjs │ │ │ │ ├── test6 │ │ │ │ │ └── test6.proto │ │ │ │ └── test7 │ │ │ │ │ └── test7.proto │ │ │ │ ├── data.proto │ │ │ │ ├── proto3_test.proto │ │ │ │ ├── test.proto │ │ │ │ ├── test2.proto │ │ │ │ ├── test3.proto │ │ │ │ ├── test4.proto │ │ │ │ ├── test5.proto │ │ │ │ ├── testbinary.proto │ │ │ │ └── testempty.proto │ │ ├── data.proto │ │ ├── proto3_test.proto │ │ ├── test.proto │ │ ├── test10.proto │ │ ├── test11.proto │ │ ├── test12.proto │ │ ├── test13.proto │ │ ├── test14.proto │ │ ├── test15.proto │ │ ├── test2.proto │ │ ├── test3.proto │ │ ├── test4.proto │ │ ├── test5.proto │ │ ├── test8.proto │ │ ├── test9.proto │ │ ├── testbinary.proto │ │ ├── testempty.proto │ │ └── testlargenumbers.proto │ │ ├── objectivec │ │ └── Tests │ │ │ ├── unittest_cycle.proto │ │ │ ├── unittest_deprecated.proto │ │ │ ├── unittest_deprecated_file.proto │ │ │ ├── unittest_extension_chain_a.proto │ │ │ ├── unittest_extension_chain_b.proto │ │ │ ├── unittest_extension_chain_c.proto │ │ │ ├── unittest_extension_chain_d.proto │ │ │ ├── unittest_extension_chain_e.proto │ │ │ ├── unittest_extension_chain_f.proto │ │ │ ├── unittest_extension_chain_g.proto │ │ │ ├── unittest_objc.proto │ │ │ ├── unittest_objc_options.proto │ │ │ ├── unittest_objc_startup.proto │ │ │ ├── unittest_runtime_proto2.proto │ │ │ └── unittest_runtime_proto3.proto │ │ ├── php │ │ └── tests │ │ │ └── proto │ │ │ ├── empty │ │ │ └── echo.proto │ │ │ ├── test.proto │ │ │ ├── test_descriptors.proto │ │ │ ├── test_empty_php_namespace.proto │ │ │ ├── test_import_descriptor_proto.proto │ │ │ ├── test_include.proto │ │ │ ├── test_no_namespace.proto │ │ │ ├── test_php_namespace.proto │ │ │ ├── test_prefix.proto │ │ │ ├── test_reserved_enum_lower.proto │ │ │ ├── test_reserved_enum_upper.proto │ │ │ ├── test_reserved_enum_value_lower.proto │ │ │ ├── test_reserved_enum_value_upper.proto │ │ │ ├── test_reserved_message_lower.proto │ │ │ ├── test_reserved_message_upper.proto │ │ │ ├── test_service.proto │ │ │ ├── test_service_namespace.proto │ │ │ └── test_wrapper_type_setters.proto │ │ ├── python │ │ └── google │ │ │ └── protobuf │ │ │ ├── internal │ │ │ ├── any_test.proto │ │ │ ├── descriptor_pool_test1.proto │ │ │ ├── descriptor_pool_test2.proto │ │ │ ├── factory_test1.proto │ │ │ ├── factory_test2.proto │ │ │ ├── file_options_test.proto │ │ │ ├── import_test_package │ │ │ │ ├── inner.proto │ │ │ │ └── outer.proto │ │ │ ├── message_set_extensions.proto │ │ │ ├── missing_enum_values.proto │ │ │ ├── more_extensions.proto │ │ │ ├── more_extensions_dynamic.proto │ │ │ ├── more_messages.proto │ │ │ ├── no_package.proto │ │ │ ├── packed_field_test.proto │ │ │ ├── test_bad_identifiers.proto │ │ │ └── test_proto3_optional.proto │ │ │ └── pyext │ │ │ ├── proto2_api_test.proto │ │ │ └── python.proto │ │ ├── ruby │ │ ├── compatibility_tests │ │ │ └── v3.0.0 │ │ │ │ └── tests │ │ │ │ ├── generated_code.proto │ │ │ │ └── test_import.proto │ │ ├── src │ │ │ └── main │ │ │ │ └── sentinel.proto │ │ └── tests │ │ │ ├── basic_test.proto │ │ │ ├── basic_test_proto2.proto │ │ │ ├── generated_code.proto │ │ │ ├── generated_code_proto2.proto │ │ │ ├── multi_level_nesting_test.proto │ │ │ ├── test_import.proto │ │ │ ├── test_import_proto2.proto │ │ │ ├── test_ruby_package.proto │ │ │ └── test_ruby_package_proto2.proto │ │ └── src │ │ └── google │ │ └── protobuf │ │ ├── any.proto │ │ ├── any_test.proto │ │ ├── api.proto │ │ ├── compiler │ │ ├── cpp │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ └── cpp_test_large_enum_value.proto │ │ ├── plugin.proto │ │ └── ruby │ │ │ ├── ruby_generated_code.proto │ │ │ ├── ruby_generated_code_proto2.proto │ │ │ ├── ruby_generated_code_proto2_import.proto │ │ │ ├── ruby_generated_pkg_explicit.proto │ │ │ ├── ruby_generated_pkg_explicit_legacy.proto │ │ │ └── ruby_generated_pkg_implicit.proto │ │ ├── descriptor.proto │ │ ├── duration.proto │ │ ├── empty.proto │ │ ├── field_mask.proto │ │ ├── map_lite_unittest.proto │ │ ├── map_proto2_unittest.proto │ │ ├── map_unittest.proto │ │ ├── source_context.proto │ │ ├── struct.proto │ │ ├── test_messages_proto2.proto │ │ ├── test_messages_proto3.proto │ │ ├── timestamp.proto │ │ ├── type.proto │ │ ├── unittest.proto │ │ ├── unittest_arena.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_drop_unknown_fields.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_lazy_dependencies.proto │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ ├── unittest_lazy_dependencies_enum.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_no_field_presence.proto │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_arena.proto │ │ ├── unittest_proto3_arena_lite.proto │ │ ├── unittest_proto3_lite.proto │ │ ├── unittest_proto3_optional.proto │ │ ├── unittest_well_known_types.proto │ │ ├── util │ │ ├── internal │ │ │ └── testdata │ │ │ │ ├── anys.proto │ │ │ │ ├── books.proto │ │ │ │ ├── default_value.proto │ │ │ │ ├── default_value_test.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── maps.proto │ │ │ │ ├── oneofs.proto │ │ │ │ ├── proto3.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp_duration.proto │ │ │ │ └── wrappers.proto │ │ ├── json_format.proto │ │ ├── json_format_proto3.proto │ │ └── message_differencer_unittest.proto │ │ └── wrappers.proto └── update.sh ├── proto ├── doctest_pb.proto ├── google │ └── protobuf │ │ ├── any.proto │ │ ├── api.proto │ │ ├── compiler │ │ └── plugin.proto │ │ ├── descriptor.proto │ │ ├── duration.proto │ │ ├── empty.proto │ │ ├── field_mask.proto │ │ ├── source_context.proto │ │ ├── struct.proto │ │ ├── timestamp.proto │ │ ├── type.proto │ │ └── wrappers.proto ├── rustproto.proto └── update.sh ├── protobuf-codegen ├── Cargo.toml ├── LICENSE.txt ├── README.md └── src │ ├── bin │ └── protoc-gen-rs.rs │ ├── codegen │ └── mod.rs │ ├── compiler_plugin.rs │ ├── customize │ ├── ctx.rs │ ├── mod.rs │ └── rustproto_proto.rs │ ├── gen │ ├── all.rs │ ├── code_writer.rs │ ├── descriptor.rs │ ├── enums.rs │ ├── extensions.rs │ ├── field │ │ ├── accessor.rs │ │ ├── elem.rs │ │ ├── mod.rs │ │ ├── option_kind.rs │ │ ├── repeated.rs │ │ ├── singular.rs │ │ ├── tag.rs │ │ └── type_ext.rs │ ├── file.rs │ ├── file_and_mod.rs │ ├── file_descriptor.rs │ ├── inside.rs │ ├── map.rs │ ├── message.rs │ ├── mod.rs │ ├── mod_rs.rs │ ├── oneof.rs │ ├── paths.rs │ ├── protoc_insertion_point.rs │ ├── rust │ │ ├── component.rs │ │ ├── ident.rs │ │ ├── ident_with_path.rs │ │ ├── keywords.rs │ │ ├── mod.rs │ │ ├── path.rs │ │ ├── quote.rs │ │ ├── rel_path.rs │ │ └── snippets.rs │ ├── rust_types_values.rs │ ├── scope.rs │ ├── strx.rs │ └── well_known_types.rs │ ├── gen_and_write.rs │ ├── lib.rs │ └── protoc_gen_rs.rs ├── protobuf-examples ├── README.md ├── customize-serde │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ │ ├── customize_example.proto │ │ └── lib.rs ├── dynamic │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── issue-614 │ ├── Cargo.toml │ ├── build.rs │ ├── examples │ │ └── example-issue-614.rs │ ├── foos.proto │ └── src │ │ └── lib.rs ├── pure-vs-protoc │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ │ ├── main.rs │ │ └── protos │ │ ├── .gitignore │ │ ├── example.proto │ │ └── mod.rs └── vs-prost │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ ├── lib.rs │ ├── segment.proto │ └── triangle.proto ├── protobuf-json-mapping ├── Cargo.toml ├── LICENSE.txt ├── README.md └── src │ ├── base64.rs │ ├── float.rs │ ├── lib.rs │ ├── parse.rs │ ├── print.rs │ ├── rfc_3339.rs │ └── well_known_wrapper.rs ├── protobuf-parse ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── examples │ └── file-descriptor-out-compare.rs ├── src │ ├── bin │ │ └── parse-and-typecheck.rs │ ├── case_convert.rs │ ├── lib.rs │ ├── parse_and_typecheck.rs │ ├── parser.rs │ ├── path.rs │ ├── proto │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── any.proto │ │ │ │ ├── api.proto │ │ │ │ ├── compiler │ │ │ │ └── plugin.proto │ │ │ │ ├── descriptor.proto │ │ │ │ ├── duration.proto │ │ │ │ ├── empty.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── source_context.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp.proto │ │ │ │ ├── type.proto │ │ │ │ └── wrappers.proto │ │ ├── mod.rs │ │ └── rustproto.proto │ ├── proto_path.rs │ ├── protobuf_abs_path.rs │ ├── protobuf_ident.rs │ ├── protobuf_path.rs │ ├── protobuf_rel_path.rs │ ├── protoc │ │ ├── command.rs │ │ ├── mod.rs │ │ └── parse_and_typecheck.rs │ ├── pure │ │ ├── convert │ │ │ ├── mod.rs │ │ │ ├── option_resolver.rs │ │ │ └── type_resolver.rs │ │ ├── mod.rs │ │ ├── model.rs │ │ ├── parse_and_typecheck.rs │ │ ├── parse_dependencies.rs │ │ └── parser.rs │ ├── rel_path.rs │ ├── test_against_protobuf_protos.rs │ └── which_parser.rs └── tests │ └── bundled_proto_consistent.rs ├── protobuf-support ├── Cargo.toml ├── LICENSE.txt ├── README.md └── src │ ├── json_name.rs │ ├── lexer │ ├── float.rs │ ├── int.rs │ ├── json_number_lit.rs │ ├── lexer_impl.rs │ ├── loc.rs │ ├── mod.rs │ ├── num_lit.rs │ ├── parser_language.rs │ ├── str_lit.rs │ ├── token.rs │ └── tokenizer.rs │ ├── lib.rs │ ├── text_format.rs │ └── toposort.rs ├── protobuf ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── build.rs ├── regenerate.sh └── src │ ├── byteorder.rs │ ├── cached_size.rs │ ├── chars.rs │ ├── coded_input_stream │ ├── buf_read_iter.rs │ ├── buf_read_or_reader.rs │ ├── input_buf.rs │ ├── input_source.rs │ └── mod.rs │ ├── coded_output_stream │ ├── buffer.rs │ ├── mod.rs │ ├── output_target.rs │ └── with.rs │ ├── descriptor.rs │ ├── doctest_pb.rs │ ├── enum_full.rs │ ├── enum_or_unknown.rs │ ├── enums.rs │ ├── error.rs │ ├── ext.rs │ ├── fixed.rs │ ├── lazy.rs │ ├── lib.rs │ ├── message.rs │ ├── message_dyn.rs │ ├── message_field.rs │ ├── message_full.rs │ ├── misc.rs │ ├── oneof.rs │ ├── oneof_full.rs │ ├── owning_ref.rs │ ├── plugin.rs │ ├── reflect │ ├── acc │ │ ├── mod.rs │ │ └── v2 │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ ├── repeated.rs │ │ │ └── singular │ │ │ ├── mod.rs │ │ │ └── oneof.rs │ ├── dynamic │ │ ├── map.rs │ │ ├── mod.rs │ │ ├── optional.rs │ │ └── repeated.rs │ ├── enums │ │ ├── generated.rs │ │ └── mod.rs │ ├── error.rs │ ├── field │ │ ├── dynamic.rs │ │ ├── index.rs │ │ ├── mod.rs │ │ ├── protobuf_field_type.rs │ │ └── runtime_field_type.rs │ ├── file │ │ ├── building.rs │ │ ├── dynamic.rs │ │ ├── fds.rs │ │ ├── generated.rs │ │ ├── index.rs │ │ ├── mod.rs │ │ └── syntax.rs │ ├── find_message_or_enum.rs │ ├── map │ │ ├── empty.rs │ │ ├── generated.rs │ │ └── mod.rs │ ├── message │ │ ├── generated.rs │ │ ├── is_initialized_is_always_true.rs │ │ ├── message_ref.rs │ │ └── mod.rs │ ├── mod.rs │ ├── name.rs │ ├── oneof │ │ ├── generated.rs │ │ └── mod.rs │ ├── optional │ │ └── mod.rs │ ├── protobuf_type_box.rs │ ├── reflect_eq.rs │ ├── repeated │ │ ├── drain_iter.rs │ │ ├── iter.rs │ │ ├── mod.rs │ │ ├── transmute.rs │ │ └── vec_downcast.rs │ ├── rt │ │ ├── mod.rs │ │ └── v2.rs │ ├── runtime_type_box.rs │ ├── runtime_types.rs │ ├── service │ │ ├── index.rs │ │ └── mod.rs │ ├── type_dynamic.rs │ ├── types.rs │ └── value │ │ ├── mod.rs │ │ ├── value_box.rs │ │ └── value_ref.rs │ ├── rt │ ├── map.rs │ ├── message.rs │ ├── mod.rs │ ├── packed.rs │ ├── repeated.rs │ ├── singular.rs │ └── unknown_or_group.rs │ ├── rustproto.rs │ ├── special.rs │ ├── text_format │ ├── mod.rs │ ├── parse.rs │ └── print.rs │ ├── timestamp.rs │ ├── unknown.rs │ ├── varint │ ├── decode.rs │ ├── encode.rs │ ├── generic.rs │ └── mod.rs │ ├── well_known_types │ ├── any.rs │ ├── api.rs │ ├── duration.rs │ ├── empty.rs │ ├── field_mask.rs │ ├── mod.rs │ ├── source_context.rs │ ├── struct_.rs │ ├── timestamp.rs │ ├── type_.rs │ └── wrappers.rs │ ├── well_known_types_util │ ├── any.rs │ ├── duration.rs │ ├── mod.rs │ └── timestamp.rs │ ├── wire_format.rs │ └── zigzag.rs ├── protoc-bin ├── Cargo.toml └── src │ ├── bin │ └── protoc-bin-print-paths.rs │ └── lib.rs └── test-crates ├── README.md ├── interop └── cxx │ ├── .gitignore │ ├── compile.sh │ ├── interop.cc │ └── interop_pb.proto ├── perftest ├── bytes │ ├── Cargo.toml │ ├── benches │ │ └── vs.rs │ ├── build.rs │ └── src │ │ ├── .gitignore │ │ ├── lib.rs │ │ └── messages.proto ├── misc │ ├── Cargo.toml │ ├── benches │ │ ├── coded_input_stream.rs │ │ ├── coded_output_stream.rs │ │ └── write.rs │ ├── build.rs │ └── src │ │ ├── bin │ │ └── read_varint.rs │ │ └── lib.rs └── vs-cxx │ ├── .gitignore │ ├── Cargo.toml │ ├── build-perftest-cxx.sh │ ├── build-perftest-data.sh │ ├── build-perftest.sh │ ├── build.rs │ ├── perftest-cxx.cxx │ ├── perftest.rs │ ├── perftest_data.pbtxt │ └── perftest_data.proto ├── protobuf-codegen-identical-test ├── Cargo.toml ├── src │ └── lib.rs ├── test-data │ └── field_after_extension.proto └── tests │ └── diff.rs ├── protobuf-codegen-protoc-test ├── .gitignore ├── Cargo.toml ├── README.md ├── build.rs ├── src │ ├── common │ │ ├── README.md │ │ ├── mod.rs │ │ ├── v2 │ │ │ ├── .gitignore │ │ │ ├── test_all_types.rs │ │ │ ├── test_all_types_pb.proto │ │ │ ├── test_any.rs │ │ │ ├── test_any_pb.proto │ │ │ ├── test_basic.rs │ │ │ ├── test_basic_pb.proto │ │ │ ├── test_default.rs │ │ │ ├── test_default_pb.proto │ │ │ ├── test_dynamic_repeated_get_set.rs │ │ │ ├── test_dynamic_repeated_get_set_pb.proto │ │ │ ├── test_dynamic_singular_get_set.rs │ │ │ ├── test_dynamic_singular_get_set_pb.proto │ │ │ ├── test_enable_lite_runtime.rs │ │ │ ├── test_enable_lite_runtime_pb.proto │ │ │ ├── test_enum_alias.rs │ │ │ ├── test_enum_alias_pb.proto │ │ │ ├── test_enum_nonunique.rs │ │ │ ├── test_enum_nonunique_pb.proto │ │ │ ├── test_enum_unknown_values_preserved.rs │ │ │ ├── test_enum_unknown_values_preserved_pb.proto │ │ │ ├── test_enum_values.rs │ │ │ ├── test_enum_values_pb.proto │ │ │ ├── test_ext.rs │ │ │ ├── test_ext_pb.proto │ │ │ ├── test_fmt_json.rs │ │ │ ├── test_fmt_json_pb.proto │ │ │ ├── test_fmt_json_well_known.rs │ │ │ ├── test_fmt_json_well_known_pb.proto │ │ │ ├── test_fmt_text_format.rs │ │ │ ├── test_fmt_text_format_pb.proto │ │ │ ├── test_generate_accessors.rs │ │ │ ├── test_generate_accessors_pb.proto │ │ │ ├── test_ident.rs │ │ │ ├── test_ident_pb.proto │ │ │ ├── test_import_descriptor.rs │ │ │ ├── test_import_descriptor_pb.proto │ │ │ ├── test_lite_runtime.rs │ │ │ ├── test_lite_runtime_pb.proto │ │ │ ├── test_map_field_references_nested.rs │ │ │ ├── test_map_field_references_nested_pb.proto │ │ │ ├── test_map_simple.rs │ │ │ ├── test_map_simple_pb.proto │ │ │ ├── test_map_tokio.rs │ │ │ ├── test_map_tokio_pb.proto │ │ │ ├── test_message_getter.rs │ │ │ ├── test_message_getter_pb.proto │ │ │ ├── test_nested_issue_476.rs │ │ │ ├── test_nested_issue_476_pb.proto │ │ │ ├── test_oneof_basic.rs │ │ │ ├── test_oneof_basic_pb.proto │ │ │ ├── test_oneof_nonexhaustive.rs │ │ │ ├── test_oneof_nonexhaustive_pb.proto │ │ │ ├── test_oneof_recursive.rs │ │ │ ├── test_oneof_recursive_pb.proto │ │ │ ├── test_reflect_basic.rs │ │ │ ├── test_reflect_basic_pb.proto │ │ │ ├── test_reflect_clear.rs │ │ │ ├── test_reflect_clear_pb.proto │ │ │ ├── test_reflect_issue_564.rs │ │ │ ├── test_reflect_issue_564_pb.proto │ │ │ ├── test_reflect_map.rs │ │ │ ├── test_reflect_map_pb.proto │ │ │ ├── test_reflect_no_package.rs │ │ │ ├── test_reflect_no_package_pb.proto │ │ │ ├── test_repeated_packed.rs │ │ │ ├── test_repeated_packed_pb.proto │ │ │ ├── test_root.rs │ │ │ ├── test_root_pb.proto │ │ │ ├── test_service.rs │ │ │ ├── test_service_pb.proto │ │ │ ├── test_singular_concat.rs │ │ │ ├── test_singular_concat_pb.proto │ │ │ ├── test_sync.rs │ │ │ ├── test_sync_pb.proto │ │ │ ├── test_tokio_bytes.rs │ │ │ ├── test_tokio_bytes_pb.proto │ │ │ ├── test_well_known_types.rs │ │ │ └── test_well_known_types_pb.proto │ │ └── v3 │ │ │ └── .gitignore │ ├── google │ │ ├── mod.rs │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── import-tests.sh │ │ │ ├── unittest.proto │ │ │ ├── unittest_arena.proto │ │ │ ├── unittest_custom_options.proto │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ ├── unittest_empty.proto │ │ │ ├── unittest_import.proto │ │ │ ├── unittest_import_lite.proto │ │ │ ├── unittest_import_public.proto │ │ │ ├── unittest_import_public_lite.proto │ │ │ ├── unittest_lazy_dependencies.proto │ │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ │ ├── unittest_lazy_dependencies_enum.proto │ │ │ ├── unittest_lite.proto │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ ├── unittest_mset.proto │ │ │ ├── unittest_mset_wire_format.proto │ │ │ ├── unittest_no_arena.proto │ │ │ ├── unittest_no_arena_import.proto │ │ │ ├── unittest_no_arena_lite.proto │ │ │ ├── unittest_no_field_presence.proto │ │ │ ├── unittest_no_generic_services.proto │ │ │ ├── unittest_optimize_for.proto │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ ├── unittest_proto3_arena.proto │ │ │ ├── unittest_proto3_arena_lite.proto │ │ │ ├── unittest_proto3_lite.proto │ │ │ └── unittest_well_known_types.proto │ ├── include_generated │ │ ├── mod.rs │ │ ├── v2.proto │ │ └── v3.proto │ ├── interop │ │ ├── bin.rs │ │ ├── json.rs │ │ └── mod.rs │ ├── lib.rs │ ├── v2 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── struct.proto │ │ ├── test-sanitize-file-name_pb.proto │ │ ├── test_default_values.rs │ │ ├── test_default_values_pb.proto │ │ ├── test_group_pb.proto │ │ ├── test_import_nested_imported_pb.proto │ │ ├── test_import_nested_pb.proto │ │ ├── test_import_nonunique_1_pb.proto │ │ ├── test_import_nonunique_2_pb.proto │ │ ├── test_import_nonunique_pb.proto │ │ ├── test_import_pkg_nested_imported_pb.proto │ │ ├── test_import_pkg_nested_pb.proto │ │ ├── test_import_root_imported_pb.proto │ │ ├── test_import_root_pb.proto │ │ ├── test_is_initialized.rs │ │ ├── test_is_initialized_pb.proto │ │ ├── test_issue_579.rs │ │ ├── test_issue_579_pb.proto │ │ ├── test_oneof_default_value.rs │ │ ├── test_oneof_default_value_pb.proto │ │ ├── test_oneof_group.rs │ │ ├── test_oneof_group_pb.proto │ │ ├── test_reflect_default.rs │ │ ├── test_reflect_default_pb.proto │ │ ├── test_required.rs │ │ ├── test_required_pb.proto │ │ ├── test_special~characters file{name}_pb.proto │ │ ├── test_stream_pb.proto │ │ ├── test_tokio_bytes_default_value.rs │ │ ├── test_tokio_bytes_default_value_pb.proto │ │ ├── test_unknown_suffix.rs │ │ └── test_unknown_suffix_pb.proto3 │ └── v3 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── test_ident_pb.proto │ │ ├── test_issue_190_pb.proto │ │ ├── test_optional.rs │ │ ├── test_optional_pb.proto │ │ ├── test_zeros_are_not_written.rs │ │ └── test_zeros_are_not_written_pb.proto └── test.sh ├── protobuf-codegen-pure-test ├── .gitignore ├── Cargo.toml ├── README.md ├── build.rs ├── src │ ├── common │ │ ├── mod.rs │ │ ├── v2 │ │ │ └── .gitignore │ │ └── v3 │ │ │ └── .gitignore │ ├── google │ │ └── protobuf │ │ │ └── .gitignore │ ├── include_generated │ │ └── .gitignore │ ├── interop │ │ └── .gitignore │ ├── lib.rs │ ├── v2 │ │ └── .gitignore │ └── v3 │ │ └── .gitignore └── test.sh ├── protobuf-fuzz ├── Cargo.toml ├── build.rs ├── fuzz │ ├── .gitignore │ ├── Cargo.toml │ └── fuzz_targets │ │ ├── all.rs │ │ ├── empty_message.rs │ │ ├── empty_message_read.rs │ │ ├── map.rs │ │ ├── map_read.rs │ │ ├── repeated.rs │ │ ├── repeated_read.rs │ │ ├── singular.rs │ │ └── singular_read.rs └── src │ ├── .gitignore │ ├── all_types_pb.proto │ └── lib.rs ├── protobuf-parse-error-test ├── Cargo.toml ├── src │ └── lib.rs └── test-data │ └── extension_in_proto3.proto ├── protobuf-test-common ├── Cargo.toml └── src │ ├── bin │ └── varint-encode.rs │ ├── build.rs │ ├── cargo.rs │ ├── dynamic.rs │ ├── hex.rs │ ├── interop.rs │ ├── json_tests.rs │ ├── lib.rs │ ├── reflect_tests.rs │ ├── serialize_deserialize_both.rs │ ├── serialize_deserialize_dynamic.rs │ ├── serialize_deserialize_generated.rs │ └── text_format_tests.rs └── protobuf-test ├── Cargo.toml └── src ├── is_initialized_is_always_true.proto ├── is_initialized_is_always_true.rs ├── is_initialized_is_always_true_dep.proto └── lib.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/linters/.ecrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/.github/linters/.ecrc -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /BUGREPORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/BUGREPORTING.md -------------------------------------------------------------------------------- /CHANGELOG-before-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/CHANGELOG-before-3.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/README.md -------------------------------------------------------------------------------- /ci-gen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/Cargo.toml -------------------------------------------------------------------------------- /ci-gen/src/actions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/src/actions.rs -------------------------------------------------------------------------------- /ci-gen/src/cargo_sync_readme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/src/cargo_sync_readme.rs -------------------------------------------------------------------------------- /ci-gen/src/ghwf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/src/ghwf.rs -------------------------------------------------------------------------------- /ci-gen/src/install_protobuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/src/install_protobuf.rs -------------------------------------------------------------------------------- /ci-gen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/src/main.rs -------------------------------------------------------------------------------- /ci-gen/src/yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci-gen/src/yaml.rs -------------------------------------------------------------------------------- /ci/env-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci/env-debug.sh -------------------------------------------------------------------------------- /ci/install-protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/ci/install-protobuf.sh -------------------------------------------------------------------------------- /doc/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/doc/FAQ.md -------------------------------------------------------------------------------- /doc/past-present-future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/doc/past-present-future.md -------------------------------------------------------------------------------- /google-protobuf-all-protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/README.md -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/benchmarks/benchmarks.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/benchmarks/benchmarks.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/benchmarks/google_size.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/benchmarks/google_size.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/conformance/conformance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/conformance/conformance.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/map_unittest_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/map_unittest_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/old_extensions1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/old_extensions1.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/old_extensions2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/old_extensions2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_custom_options_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_custom_options_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import_public.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import_public_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_import_public_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issue6936_a.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issue6936_a.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issue6936_b.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issue6936_b.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issue6936_c.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issue6936_c.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issues.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_issues.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_selfreferential_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/csharp/protos/unittest_selfreferential_options.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/examples/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/examples/addressbook.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/commonjs/test6/test6.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/commonjs/test6/test6.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/commonjs/test7/test7.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/commonjs/test7/test7.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/data.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/proto3_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/proto3_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test4.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test4.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test5.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/test5.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/testbinary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/testbinary.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/testempty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.0.0/testempty.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/data.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/proto3_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/proto3_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test4.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test4.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test5.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/test5.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/testbinary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/testbinary.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/testempty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/compatibility_tests/v3.1.0/testempty.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/data.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/proto3_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/proto3_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test10.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test10.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test11.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test11.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test12.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test12.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test13.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test13.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test14.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test14.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test15.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test15.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test4.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test4.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test5.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test5.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test8.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test8.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/test9.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/test9.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/testbinary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/testbinary.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/testempty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/testempty.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/js/testlargenumbers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/js/testlargenumbers.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_cycle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_cycle.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_deprecated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_deprecated.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_deprecated_file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_deprecated_file.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_a.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_a.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_b.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_b.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_c.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_c.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_d.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_e.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_e.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_f.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_f.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_g.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_extension_chain_g.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_objc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_objc.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_objc_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_objc_options.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_objc_startup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_objc_startup.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_runtime_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_runtime_proto2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_runtime_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/objectivec/Tests/unittest_runtime_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/empty/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/empty/echo.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_descriptors.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_descriptors.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_empty_php_namespace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_empty_php_namespace.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_import_descriptor_proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_import_descriptor_proto.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_include.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_include.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_no_namespace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_no_namespace.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_php_namespace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_php_namespace.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_prefix.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_prefix.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_lower.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_lower.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_upper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_upper.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_value_lower.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_value_lower.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_value_upper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_enum_value_upper.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_message_lower.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_message_lower.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_message_upper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_reserved_message_upper.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_service.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_service_namespace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_service_namespace.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_wrapper_type_setters.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/php/tests/proto/test_wrapper_type_setters.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/any_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/any_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/factory_test1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/factory_test1.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/factory_test2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/factory_test2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/file_options_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/file_options_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/more_extensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/more_extensions.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/more_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/more_messages.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/no_package.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/no_package.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/packed_field_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/internal/packed_field_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/pyext/proto2_api_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/pyext/proto2_api_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/pyext/python.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/python/google/protobuf/pyext/python.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/compatibility_tests/v3.0.0/tests/test_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/compatibility_tests/v3.0.0/tests/test_import.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/src/main/sentinel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/src/main/sentinel.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/basic_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/basic_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/basic_test_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/basic_test_proto2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/generated_code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/generated_code.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/generated_code_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/generated_code_proto2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/multi_level_nesting_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/multi_level_nesting_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_import.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_import_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_import_proto2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_ruby_package.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_ruby_package.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_ruby_package_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/ruby/tests/test_ruby_package_proto2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/any.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/any_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/any_test.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/api.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/duration.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/empty.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/map_lite_unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/map_lite_unittest.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/map_proto2_unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/map_proto2_unittest.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/map_unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/map_unittest.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/struct.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/test_messages_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/test_messages_proto2.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/test_messages_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/test_messages_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/type.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_arena.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_arena.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_import_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_import_public.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_lazy_dependencies.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_lazy_dependencies.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_mset_wire_format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_mset_wire_format.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_no_field_presence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_no_field_presence.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_arena.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_arena.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_arena_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_arena_lite.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_lite.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_optional.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_proto3_optional.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_well_known_types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/unittest_well_known_types.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/util/json_format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/util/json_format.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/util/json_format_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/util/json_format_proto3.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/protobuf/protobuf-git/src/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /google-protobuf-all-protos/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/google-protobuf-all-protos/update.sh -------------------------------------------------------------------------------- /proto/doctest_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/doctest_pb.proto -------------------------------------------------------------------------------- /proto/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/any.proto -------------------------------------------------------------------------------- /proto/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/api.proto -------------------------------------------------------------------------------- /proto/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /proto/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /proto/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/duration.proto -------------------------------------------------------------------------------- /proto/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/empty.proto -------------------------------------------------------------------------------- /proto/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /proto/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /proto/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/struct.proto -------------------------------------------------------------------------------- /proto/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /proto/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/type.proto -------------------------------------------------------------------------------- /proto/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /proto/rustproto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/rustproto.proto -------------------------------------------------------------------------------- /proto/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/proto/update.sh -------------------------------------------------------------------------------- /protobuf-codegen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/Cargo.toml -------------------------------------------------------------------------------- /protobuf-codegen/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/LICENSE.txt -------------------------------------------------------------------------------- /protobuf-codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/README.md -------------------------------------------------------------------------------- /protobuf-codegen/src/bin/protoc-gen-rs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/bin/protoc-gen-rs.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/codegen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/codegen/mod.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/compiler_plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/compiler_plugin.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/customize/ctx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/customize/ctx.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/customize/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/customize/mod.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/customize/rustproto_proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/customize/rustproto_proto.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/all.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/code_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/code_writer.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/descriptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/descriptor.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/enums.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/extensions.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/accessor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/accessor.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/elem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/elem.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/mod.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/option_kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/option_kind.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/repeated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/repeated.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/singular.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/singular.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/tag.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/field/type_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/field/type_ext.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/file.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/file_and_mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/file_and_mod.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/file_descriptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/file_descriptor.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/inside.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/inside.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/map.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/message.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/mod.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/mod_rs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/mod_rs.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/oneof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/oneof.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/paths.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/protoc_insertion_point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/protoc_insertion_point.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/component.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/ident.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/ident_with_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/ident_with_path.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/keywords.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/keywords.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/mod.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/path.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/quote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/quote.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/rel_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/rel_path.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust/snippets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust/snippets.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/rust_types_values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/rust_types_values.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/scope.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/strx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/strx.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen/well_known_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen/well_known_types.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/gen_and_write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/gen_and_write.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/lib.rs -------------------------------------------------------------------------------- /protobuf-codegen/src/protoc_gen_rs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-codegen/src/protoc_gen_rs.rs -------------------------------------------------------------------------------- /protobuf-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/README.md -------------------------------------------------------------------------------- /protobuf-examples/customize-serde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/customize-serde/Cargo.toml -------------------------------------------------------------------------------- /protobuf-examples/customize-serde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/customize-serde/README.md -------------------------------------------------------------------------------- /protobuf-examples/customize-serde/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/customize-serde/build.rs -------------------------------------------------------------------------------- /protobuf-examples/customize-serde/src/customize_example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/customize-serde/src/customize_example.proto -------------------------------------------------------------------------------- /protobuf-examples/customize-serde/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/customize-serde/src/lib.rs -------------------------------------------------------------------------------- /protobuf-examples/dynamic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/dynamic/Cargo.toml -------------------------------------------------------------------------------- /protobuf-examples/dynamic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/dynamic/README.md -------------------------------------------------------------------------------- /protobuf-examples/dynamic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/dynamic/src/main.rs -------------------------------------------------------------------------------- /protobuf-examples/issue-614/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/issue-614/Cargo.toml -------------------------------------------------------------------------------- /protobuf-examples/issue-614/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/issue-614/build.rs -------------------------------------------------------------------------------- /protobuf-examples/issue-614/examples/example-issue-614.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/issue-614/examples/example-issue-614.rs -------------------------------------------------------------------------------- /protobuf-examples/issue-614/foos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/issue-614/foos.proto -------------------------------------------------------------------------------- /protobuf-examples/issue-614/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/issue-614/src/lib.rs -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/pure-vs-protoc/Cargo.toml -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/pure-vs-protoc/README.md -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/pure-vs-protoc/build.rs -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/pure-vs-protoc/src/main.rs -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/src/protos/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | example.rs 3 | 4 | -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/src/protos/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/pure-vs-protoc/src/protos/example.proto -------------------------------------------------------------------------------- /protobuf-examples/pure-vs-protoc/src/protos/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/pure-vs-protoc/src/protos/mod.rs -------------------------------------------------------------------------------- /protobuf-examples/vs-prost/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/vs-prost/Cargo.toml -------------------------------------------------------------------------------- /protobuf-examples/vs-prost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/vs-prost/README.md -------------------------------------------------------------------------------- /protobuf-examples/vs-prost/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/vs-prost/build.rs -------------------------------------------------------------------------------- /protobuf-examples/vs-prost/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/vs-prost/src/lib.rs -------------------------------------------------------------------------------- /protobuf-examples/vs-prost/src/segment.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | message Segment { 4 | } 5 | -------------------------------------------------------------------------------- /protobuf-examples/vs-prost/src/triangle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-examples/vs-prost/src/triangle.proto -------------------------------------------------------------------------------- /protobuf-json-mapping/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/Cargo.toml -------------------------------------------------------------------------------- /protobuf-json-mapping/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/LICENSE.txt -------------------------------------------------------------------------------- /protobuf-json-mapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/README.md -------------------------------------------------------------------------------- /protobuf-json-mapping/src/base64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/base64.rs -------------------------------------------------------------------------------- /protobuf-json-mapping/src/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/float.rs -------------------------------------------------------------------------------- /protobuf-json-mapping/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/lib.rs -------------------------------------------------------------------------------- /protobuf-json-mapping/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/parse.rs -------------------------------------------------------------------------------- /protobuf-json-mapping/src/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/print.rs -------------------------------------------------------------------------------- /protobuf-json-mapping/src/rfc_3339.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/rfc_3339.rs -------------------------------------------------------------------------------- /protobuf-json-mapping/src/well_known_wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-json-mapping/src/well_known_wrapper.rs -------------------------------------------------------------------------------- /protobuf-parse/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/Cargo.toml -------------------------------------------------------------------------------- /protobuf-parse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/LICENSE.txt -------------------------------------------------------------------------------- /protobuf-parse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/README.md -------------------------------------------------------------------------------- /protobuf-parse/examples/file-descriptor-out-compare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/examples/file-descriptor-out-compare.rs -------------------------------------------------------------------------------- /protobuf-parse/src/bin/parse-and-typecheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/bin/parse-and-typecheck.rs -------------------------------------------------------------------------------- /protobuf-parse/src/case_convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/case_convert.rs -------------------------------------------------------------------------------- /protobuf-parse/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/lib.rs -------------------------------------------------------------------------------- /protobuf-parse/src/parse_and_typecheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/parse_and_typecheck.rs -------------------------------------------------------------------------------- /protobuf-parse/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/parser.rs -------------------------------------------------------------------------------- /protobuf-parse/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/path.rs -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/any.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/api.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/duration.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/empty.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/struct.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/type.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/mod.rs -------------------------------------------------------------------------------- /protobuf-parse/src/proto/rustproto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto/rustproto.proto -------------------------------------------------------------------------------- /protobuf-parse/src/proto_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/proto_path.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protobuf_abs_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protobuf_abs_path.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protobuf_ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protobuf_ident.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protobuf_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protobuf_path.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protobuf_rel_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protobuf_rel_path.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protoc/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protoc/command.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protoc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protoc/mod.rs -------------------------------------------------------------------------------- /protobuf-parse/src/protoc/parse_and_typecheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/protoc/parse_and_typecheck.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/convert/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/convert/mod.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/convert/option_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/convert/option_resolver.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/convert/type_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/convert/type_resolver.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/mod.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/model.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/parse_and_typecheck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/parse_and_typecheck.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/parse_dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/parse_dependencies.rs -------------------------------------------------------------------------------- /protobuf-parse/src/pure/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/pure/parser.rs -------------------------------------------------------------------------------- /protobuf-parse/src/rel_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/rel_path.rs -------------------------------------------------------------------------------- /protobuf-parse/src/test_against_protobuf_protos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/test_against_protobuf_protos.rs -------------------------------------------------------------------------------- /protobuf-parse/src/which_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/src/which_parser.rs -------------------------------------------------------------------------------- /protobuf-parse/tests/bundled_proto_consistent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-parse/tests/bundled_proto_consistent.rs -------------------------------------------------------------------------------- /protobuf-support/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/Cargo.toml -------------------------------------------------------------------------------- /protobuf-support/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/LICENSE.txt -------------------------------------------------------------------------------- /protobuf-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/README.md -------------------------------------------------------------------------------- /protobuf-support/src/json_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/json_name.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/float.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/int.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/json_number_lit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/json_number_lit.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/lexer_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/lexer_impl.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/loc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/loc.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/mod.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/num_lit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/num_lit.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/parser_language.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/parser_language.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/str_lit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/str_lit.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/token.rs -------------------------------------------------------------------------------- /protobuf-support/src/lexer/tokenizer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lexer/tokenizer.rs -------------------------------------------------------------------------------- /protobuf-support/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/lib.rs -------------------------------------------------------------------------------- /protobuf-support/src/text_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/text_format.rs -------------------------------------------------------------------------------- /protobuf-support/src/toposort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf-support/src/toposort.rs -------------------------------------------------------------------------------- /protobuf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/Cargo.toml -------------------------------------------------------------------------------- /protobuf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/LICENSE.txt -------------------------------------------------------------------------------- /protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/README.md -------------------------------------------------------------------------------- /protobuf/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/build.rs -------------------------------------------------------------------------------- /protobuf/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/regenerate.sh -------------------------------------------------------------------------------- /protobuf/src/byteorder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/byteorder.rs -------------------------------------------------------------------------------- /protobuf/src/cached_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/cached_size.rs -------------------------------------------------------------------------------- /protobuf/src/chars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/chars.rs -------------------------------------------------------------------------------- /protobuf/src/coded_input_stream/buf_read_iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_input_stream/buf_read_iter.rs -------------------------------------------------------------------------------- /protobuf/src/coded_input_stream/buf_read_or_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_input_stream/buf_read_or_reader.rs -------------------------------------------------------------------------------- /protobuf/src/coded_input_stream/input_buf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_input_stream/input_buf.rs -------------------------------------------------------------------------------- /protobuf/src/coded_input_stream/input_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_input_stream/input_source.rs -------------------------------------------------------------------------------- /protobuf/src/coded_input_stream/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_input_stream/mod.rs -------------------------------------------------------------------------------- /protobuf/src/coded_output_stream/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_output_stream/buffer.rs -------------------------------------------------------------------------------- /protobuf/src/coded_output_stream/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_output_stream/mod.rs -------------------------------------------------------------------------------- /protobuf/src/coded_output_stream/output_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_output_stream/output_target.rs -------------------------------------------------------------------------------- /protobuf/src/coded_output_stream/with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/coded_output_stream/with.rs -------------------------------------------------------------------------------- /protobuf/src/descriptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/descriptor.rs -------------------------------------------------------------------------------- /protobuf/src/doctest_pb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/doctest_pb.rs -------------------------------------------------------------------------------- /protobuf/src/enum_full.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/enum_full.rs -------------------------------------------------------------------------------- /protobuf/src/enum_or_unknown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/enum_or_unknown.rs -------------------------------------------------------------------------------- /protobuf/src/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/enums.rs -------------------------------------------------------------------------------- /protobuf/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/error.rs -------------------------------------------------------------------------------- /protobuf/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/ext.rs -------------------------------------------------------------------------------- /protobuf/src/fixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/fixed.rs -------------------------------------------------------------------------------- /protobuf/src/lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/lazy.rs -------------------------------------------------------------------------------- /protobuf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/lib.rs -------------------------------------------------------------------------------- /protobuf/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/message.rs -------------------------------------------------------------------------------- /protobuf/src/message_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/message_dyn.rs -------------------------------------------------------------------------------- /protobuf/src/message_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/message_field.rs -------------------------------------------------------------------------------- /protobuf/src/message_full.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/message_full.rs -------------------------------------------------------------------------------- /protobuf/src/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/misc.rs -------------------------------------------------------------------------------- /protobuf/src/oneof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/oneof.rs -------------------------------------------------------------------------------- /protobuf/src/oneof_full.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/oneof_full.rs -------------------------------------------------------------------------------- /protobuf/src/owning_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/owning_ref.rs -------------------------------------------------------------------------------- /protobuf/src/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/plugin.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/acc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/acc/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/acc/v2/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/acc/v2/map.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/acc/v2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/acc/v2/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/acc/v2/repeated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/acc/v2/repeated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/acc/v2/singular/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/acc/v2/singular/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/acc/v2/singular/oneof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/acc/v2/singular/oneof.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/dynamic/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/dynamic/map.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/dynamic/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/dynamic/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/dynamic/optional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/dynamic/optional.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/dynamic/repeated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/dynamic/repeated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/enums/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/enums/generated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/enums/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/enums/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/error.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/field/dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/field/dynamic.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/field/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/field/index.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/field/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/field/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/field/protobuf_field_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/field/protobuf_field_type.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/field/runtime_field_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/field/runtime_field_type.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/building.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/building.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/dynamic.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/fds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/fds.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/generated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/index.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/file/syntax.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/file/syntax.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/find_message_or_enum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/find_message_or_enum.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/map/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/map/empty.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/map/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/map/generated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/map/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/map/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/message/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/message/generated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/message/is_initialized_is_always_true.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/message/is_initialized_is_always_true.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/message/message_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/message/message_ref.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/message/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/message/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/name.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/oneof/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/oneof/generated.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/oneof/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/oneof/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/optional/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/optional/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/protobuf_type_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/protobuf_type_box.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/reflect_eq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/reflect_eq.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/repeated/drain_iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/repeated/drain_iter.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/repeated/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/repeated/iter.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/repeated/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/repeated/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/repeated/transmute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/repeated/transmute.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/repeated/vec_downcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/repeated/vec_downcast.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/rt/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/rt/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/rt/v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/rt/v2.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/runtime_type_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/runtime_type_box.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/runtime_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/runtime_types.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/service/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/service/index.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/service/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/service/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/type_dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/type_dynamic.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/types.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/value/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/value/mod.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/value/value_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/value/value_box.rs -------------------------------------------------------------------------------- /protobuf/src/reflect/value/value_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/reflect/value/value_ref.rs -------------------------------------------------------------------------------- /protobuf/src/rt/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/map.rs -------------------------------------------------------------------------------- /protobuf/src/rt/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/message.rs -------------------------------------------------------------------------------- /protobuf/src/rt/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/mod.rs -------------------------------------------------------------------------------- /protobuf/src/rt/packed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/packed.rs -------------------------------------------------------------------------------- /protobuf/src/rt/repeated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/repeated.rs -------------------------------------------------------------------------------- /protobuf/src/rt/singular.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/singular.rs -------------------------------------------------------------------------------- /protobuf/src/rt/unknown_or_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rt/unknown_or_group.rs -------------------------------------------------------------------------------- /protobuf/src/rustproto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/rustproto.rs -------------------------------------------------------------------------------- /protobuf/src/special.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/special.rs -------------------------------------------------------------------------------- /protobuf/src/text_format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/text_format/mod.rs -------------------------------------------------------------------------------- /protobuf/src/text_format/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/text_format/parse.rs -------------------------------------------------------------------------------- /protobuf/src/text_format/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/text_format/print.rs -------------------------------------------------------------------------------- /protobuf/src/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/timestamp.rs -------------------------------------------------------------------------------- /protobuf/src/unknown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/unknown.rs -------------------------------------------------------------------------------- /protobuf/src/varint/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/varint/decode.rs -------------------------------------------------------------------------------- /protobuf/src/varint/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/varint/encode.rs -------------------------------------------------------------------------------- /protobuf/src/varint/generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/varint/generic.rs -------------------------------------------------------------------------------- /protobuf/src/varint/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/varint/mod.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/any.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/any.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/api.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/duration.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/empty.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/field_mask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/field_mask.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/mod.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/source_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/source_context.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/struct_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/struct_.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/timestamp.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/type_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/type_.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types/wrappers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types/wrappers.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types_util/any.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types_util/any.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types_util/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types_util/duration.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types_util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types_util/mod.rs -------------------------------------------------------------------------------- /protobuf/src/well_known_types_util/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/well_known_types_util/timestamp.rs -------------------------------------------------------------------------------- /protobuf/src/wire_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/wire_format.rs -------------------------------------------------------------------------------- /protobuf/src/zigzag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protobuf/src/zigzag.rs -------------------------------------------------------------------------------- /protoc-bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protoc-bin/Cargo.toml -------------------------------------------------------------------------------- /protoc-bin/src/bin/protoc-bin-print-paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protoc-bin/src/bin/protoc-bin-print-paths.rs -------------------------------------------------------------------------------- /protoc-bin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/protoc-bin/src/lib.rs -------------------------------------------------------------------------------- /test-crates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/README.md -------------------------------------------------------------------------------- /test-crates/interop/cxx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/interop/cxx/.gitignore -------------------------------------------------------------------------------- /test-crates/interop/cxx/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/interop/cxx/compile.sh -------------------------------------------------------------------------------- /test-crates/interop/cxx/interop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/interop/cxx/interop.cc -------------------------------------------------------------------------------- /test-crates/interop/cxx/interop_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/interop/cxx/interop_pb.proto -------------------------------------------------------------------------------- /test-crates/perftest/bytes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/bytes/Cargo.toml -------------------------------------------------------------------------------- /test-crates/perftest/bytes/benches/vs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/bytes/benches/vs.rs -------------------------------------------------------------------------------- /test-crates/perftest/bytes/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/bytes/build.rs -------------------------------------------------------------------------------- /test-crates/perftest/bytes/src/.gitignore: -------------------------------------------------------------------------------- 1 | messages.rs 2 | -------------------------------------------------------------------------------- /test-crates/perftest/bytes/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![cfg(feature = "bytes")] 2 | 3 | pub mod messages; 4 | -------------------------------------------------------------------------------- /test-crates/perftest/bytes/src/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/bytes/src/messages.proto -------------------------------------------------------------------------------- /test-crates/perftest/misc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/misc/Cargo.toml -------------------------------------------------------------------------------- /test-crates/perftest/misc/benches/coded_input_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/misc/benches/coded_input_stream.rs -------------------------------------------------------------------------------- /test-crates/perftest/misc/benches/coded_output_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/misc/benches/coded_output_stream.rs -------------------------------------------------------------------------------- /test-crates/perftest/misc/benches/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/misc/benches/write.rs -------------------------------------------------------------------------------- /test-crates/perftest/misc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/misc/build.rs -------------------------------------------------------------------------------- /test-crates/perftest/misc/src/bin/read_varint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/misc/src/bin/read_varint.rs -------------------------------------------------------------------------------- /test-crates/perftest/misc/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/.gitignore -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/Cargo.toml -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/build-perftest-cxx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/build-perftest-cxx.sh -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/build-perftest-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/build-perftest-data.sh -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/build-perftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/build-perftest.sh -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/build.rs -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/perftest-cxx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/perftest-cxx.cxx -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/perftest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/perftest.rs -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/perftest_data.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/perftest_data.pbtxt -------------------------------------------------------------------------------- /test-crates/perftest/vs-cxx/perftest_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/perftest/vs-cxx/perftest_data.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-identical-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-identical-test/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-identical-test/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-identical-test/test-data/field_after_extension.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-identical-test/test-data/field_after_extension.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-identical-test/tests/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-identical-test/tests/diff.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/.gitignore -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/README.md -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/build.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/README.md -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/mod.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/.gitignore -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_all_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_all_types.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_all_types_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_all_types_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_any.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_any.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_any_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_any_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_basic.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_basic_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_basic_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_default.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_default_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_default_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_repeated_get_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_repeated_get_set.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_repeated_get_set_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_repeated_get_set_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_singular_get_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_singular_get_set.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_singular_get_set_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_dynamic_singular_get_set_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enable_lite_runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enable_lite_runtime.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enable_lite_runtime_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enable_lite_runtime_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_alias.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_alias.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_alias_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_alias_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_nonunique.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_nonunique.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_nonunique_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_nonunique_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_unknown_values_preserved.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_unknown_values_preserved.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_unknown_values_preserved_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_unknown_values_preserved_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_values.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_values_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_enum_values_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ext.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ext_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ext_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json_well_known.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json_well_known.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json_well_known_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_json_well_known_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_text_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_text_format.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_text_format_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_fmt_text_format_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_generate_accessors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_generate_accessors.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_generate_accessors_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_generate_accessors_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ident.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ident_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_ident_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_import_descriptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_import_descriptor.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_import_descriptor_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_import_descriptor_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_lite_runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_lite_runtime.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_lite_runtime_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_lite_runtime_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_field_references_nested.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_field_references_nested.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_field_references_nested_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_field_references_nested_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_simple.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_simple_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_simple_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_tokio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_tokio.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_tokio_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_map_tokio_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_message_getter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_message_getter.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_message_getter_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_message_getter_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_nested_issue_476.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_nested_issue_476.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_nested_issue_476_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_nested_issue_476_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_basic.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_basic_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_basic_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_nonexhaustive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_nonexhaustive.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_nonexhaustive_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_nonexhaustive_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_recursive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_recursive.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_recursive_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_oneof_recursive_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_basic.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_basic_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_basic_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_issue_564.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_issue_564.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_issue_564_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_issue_564_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_map.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_map_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_map_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_no_package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_no_package.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_no_package_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_no_package_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_repeated_packed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_repeated_packed.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_repeated_packed_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_repeated_packed_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_root.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_root.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_root_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_root_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_service.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_service_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_service_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_singular_concat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_singular_concat.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_singular_concat_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_singular_concat_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_sync.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_sync_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_sync_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_tokio_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_tokio_bytes.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_tokio_bytes_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_tokio_bytes_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_well_known_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_well_known_types.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v2/test_well_known_types_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_well_known_types_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/common/v3/.gitignore: -------------------------------------------------------------------------------- 1 | *.rs 2 | *.proto 3 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/mod.rs: -------------------------------------------------------------------------------- 1 | mod protobuf; 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/.gitignore -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/README.md -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/import-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/import-tests.sh -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_arena.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_arena.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_drop_unknown_fields.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_drop_unknown_fields.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_embed_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_embed_optimize_for.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import_public.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import_public_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_import_public_lite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lazy_dependencies.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lazy_dependencies.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lazy_dependencies_enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lazy_dependencies_enum.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lite_imports_nonlite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_lite_imports_nonlite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_mset_wire_format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_mset_wire_format.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_arena.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_arena.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_arena_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_arena_import.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_arena_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_arena_lite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_field_presence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_field_presence.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_generic_services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_no_generic_services.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_preserve_unknown_enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_preserve_unknown_enum.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_preserve_unknown_enum2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_preserve_unknown_enum2.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_proto3_arena.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_proto3_arena.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_proto3_arena_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_proto3_arena_lite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_proto3_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_proto3_lite.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_well_known_types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/google/protobuf/unittest_well_known_types.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/include_generated/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/include_generated/mod.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/include_generated/v2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/include_generated/v2.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/include_generated/v3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/include_generated/v3.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/interop/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/interop/bin.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/interop/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/interop/json.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/interop/mod.rs: -------------------------------------------------------------------------------- 1 | // @generated 2 | 3 | pub mod interop_pb; 4 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/lib.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/.gitignore -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/README.md: -------------------------------------------------------------------------------- 1 | Tests for codegen with `syntax = "proto2"`. 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/struct.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test-sanitize-file-name_pb.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | message FooBar {} 4 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_default_values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_default_values.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_default_values_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_default_values_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_group_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_group_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nested_imported_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nested_imported_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nested_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nested_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nonunique_1_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nonunique_1_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nonunique_2_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nonunique_2_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nonunique_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_nonunique_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_pkg_nested_imported_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_pkg_nested_imported_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_pkg_nested_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_pkg_nested_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_root_imported_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_root_imported_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_import_root_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_import_root_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_is_initialized.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_is_initialized.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_is_initialized_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_is_initialized_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_issue_579.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_issue_579.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_issue_579_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_issue_579_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_default_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_default_value.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_default_value_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_default_value_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_group.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_group_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_oneof_group_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_reflect_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_reflect_default.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_reflect_default_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_reflect_default_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_required.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_required.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_required_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_required_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_special~characters file{name}_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_special~characters file{name}_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_stream_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_stream_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_tokio_bytes_default_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_tokio_bytes_default_value.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_tokio_bytes_default_value_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_tokio_bytes_default_value_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_unknown_suffix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v2/test_unknown_suffix.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v2/test_unknown_suffix_pb.proto3: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | message TestUnknownSuffix {} 4 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/.gitignore -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/README.md: -------------------------------------------------------------------------------- 1 | Tests for codegen with `syntax = "proto3"`. 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/test_ident_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/test_ident_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/test_issue_190_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/test_issue_190_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/test_optional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/test_optional.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/test_optional_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/test_optional_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/test_zeros_are_not_written.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/test_zeros_are_not_written.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/src/v3/test_zeros_are_not_written_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/src/v3/test_zeros_are_not_written_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-protoc-test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-protoc-test/test.sh -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-pure-test/.gitignore -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-pure-test/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/README.md: -------------------------------------------------------------------------------- 1 | # Tests for `protobuf-codegen-pure` crate 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-pure-test/build.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-pure-test/src/common/mod.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/common/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # All files in this directory are generated 2 | * 3 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/common/v3/.gitignore: -------------------------------------------------------------------------------- 1 | # All files in this directory are generated 2 | * 3 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/google/protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | # All files in this directory are generated 2 | * 3 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/include_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/interop/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-pure-test/src/lib.rs -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # All files in this directory are generated 2 | * 3 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/src/v3/.gitignore: -------------------------------------------------------------------------------- 1 | # All files in this directory are generated 2 | * 3 | -------------------------------------------------------------------------------- /test-crates/protobuf-codegen-pure-test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-codegen-pure-test/test.sh -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/build.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target 3 | corpus 4 | artifacts 5 | -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/all.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/empty_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/empty_message.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/empty_message_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/empty_message_read.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/map.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/map_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/map_read.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/repeated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/repeated.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/repeated_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/repeated_read.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/singular.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/singular.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/fuzz/fuzz_targets/singular_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/fuzz/fuzz_targets/singular_read.rs -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/src/.gitignore: -------------------------------------------------------------------------------- 1 | *_pb.rs 2 | -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/src/all_types_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/src/all_types_pb.proto -------------------------------------------------------------------------------- /test-crates/protobuf-fuzz/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-fuzz/src/lib.rs -------------------------------------------------------------------------------- /test-crates/protobuf-parse-error-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-parse-error-test/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-parse-error-test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-parse-error-test/src/lib.rs -------------------------------------------------------------------------------- /test-crates/protobuf-parse-error-test/test-data/extension_in_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-parse-error-test/test-data/extension_in_proto3.proto -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/bin/varint-encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/bin/varint-encode.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/build.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/cargo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/cargo.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/dynamic.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/hex.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/interop.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/json_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/json_tests.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/lib.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/reflect_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/reflect_tests.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/serialize_deserialize_both.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/serialize_deserialize_both.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/serialize_deserialize_dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/serialize_deserialize_dynamic.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/serialize_deserialize_generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/serialize_deserialize_generated.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test-common/src/text_format_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test-common/src/text_format_tests.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test/Cargo.toml -------------------------------------------------------------------------------- /test-crates/protobuf-test/src/is_initialized_is_always_true.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test/src/is_initialized_is_always_true.proto -------------------------------------------------------------------------------- /test-crates/protobuf-test/src/is_initialized_is_always_true.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test/src/is_initialized_is_always_true.rs -------------------------------------------------------------------------------- /test-crates/protobuf-test/src/is_initialized_is_always_true_dep.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepancheg/rust-protobuf/HEAD/test-crates/protobuf-test/src/is_initialized_is_always_true_dep.proto -------------------------------------------------------------------------------- /test-crates/protobuf-test/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![cfg(test)] 2 | 3 | mod is_initialized_is_always_true; 4 | --------------------------------------------------------------------------------