Skip to content

Commit

Permalink
updated submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 22, 2024
1 parent 0cb67af commit 0ddc947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tweaks/protobuf
Submodule protobuf updated 62 files
+25 −13 .github/workflows/test_rust.yml
+14 −0 editions/codegen_tests/proto2_multiline_comments.proto
+1 −1 examples/go/go.mod
+6 −0 java/core/src/main/java/com/google/protobuf/FieldSet.java
+13 −4 java/core/src/main/java/com/google/protobuf/GeneratedMessage.java
+8 −0 java/core/src/main/java/com/google/protobuf/LazyFieldLite.java
+38 −0 java/core/src/test/java/com/google/protobuf/LazilyParsedMessageSetTest.java
+12 −4 php/ext/google/protobuf/php-upb.c
+4 −0 php/ext/google/protobuf/php-upb.h
+12 −4 ruby/ext/google/protobuf_c/ruby-upb.c
+4 −0 ruby/ext/google/protobuf_c/ruby-upb.h
+1 −1 rust/cargo/Cargo-template.toml
+35 −17 rust/cpp.rs
+34 −10 rust/cpp_kernel/map.cc
+8 −8 rust/map.rs
+7 −7 rust/proxied.rs
+3 −3 rust/repeated.rs
+6 −6 rust/string.rs
+3 −3 rust/test/cpp/debug_test.rs
+8 −8 rust/test/cpp/interop/main.rs
+7 −7 rust/test/shared/accessors_map_test.rs
+16 −16 rust/test/shared/accessors_proto3_test.rs
+12 −12 rust/test/shared/accessors_repeated_test.rs
+49 −49 rust/test/shared/accessors_test.rs
+3 −3 rust/test/shared/bad_names_test.rs
+3 −3 rust/test/shared/child_parent_test.rs
+1 −1 rust/test/shared/ctype_cord_test.rs
+3 −3 rust/test/shared/edition2023_test.rs
+14 −14 rust/test/shared/enum_test.rs
+3 −3 rust/test/shared/fields_with_imported_types_test.rs
+3 −3 rust/test/shared/gtest_matchers_test.rs
+1 −1 rust/test/shared/import_public_test.rs
+5 −5 rust/test/shared/merge_from_test.rs
+2 −2 rust/test/shared/nested_types_test.rs
+2 −2 rust/test/shared/no_internal_access_test.rs
+2 −2 rust/test/shared/package_test.rs
+9 −9 rust/test/shared/proto_macro_test.rs
+8 −8 rust/test/shared/serialization_test.rs
+7 −7 rust/test/shared/simple_nested_test.rs
+3 −3 rust/test/shared/utf8/utf8_test.rs
+1 −1 rust/test/upb/debug_string_test.rs
+2 −2 rust/test/upb/string_ctypes_test.rs
+4 −4 rust/upb/arena.rs
+3 −3 rust/upb/array.rs
+3 −3 rust/upb/map.rs
+2 −2 rust/upb/message.rs
+2 −2 rust/upb/mini_table.rs
+4 −4 rust/upb/owned_arena_box.rs
+2 −2 rust/upb/text.rs
+2 −2 rust/upb/wire.rs
+17 −17 src/README.md
+229 −125 src/google/protobuf/extension_set.cc
+36 −3 src/google/protobuf/extension_set.h
+61 −0 src/google/protobuf/map.cc
+71 −4 src/google/protobuf/map.h
+54 −0 src/google/protobuf/map_test.cc
+5 −0 src/google/protobuf/map_test.inc
+9 −0 third_party/utf8_range/CMakeLists.txt
+6 −2 upb/wire/decode.c
+2 −0 upb/wire/decode.h
+6 −2 upb/wire/encode.c
+2 −0 upb/wire/encode.h

0 comments on commit 0ddc947

Please sign in to comment.