google-protobuf 4.29.5-x64-mingw-ucrt → 4.30.0.rc.1-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/convert.c +3 -10
- data/ext/google/protobuf_c/defs.c +161 -2
- data/ext/google/protobuf_c/extconf.rb +12 -0
- data/ext/google/protobuf_c/glue.c +63 -0
- data/ext/google/protobuf_c/message.c +2 -4
- data/ext/google/protobuf_c/protobuf.c +2 -1
- data/ext/google/protobuf_c/ruby-upb.c +7728 -6620
- data/ext/google/protobuf_c/ruby-upb.h +2391 -1671
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.c +15 -275
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/lib/google/3.1/protobuf_c.so +0 -0
- data/lib/google/3.2/protobuf_c.so +0 -0
- data/lib/google/3.3/protobuf_c.so +0 -0
- data/lib/google/3.4/protobuf_c.so +0 -0
- data/lib/google/protobuf/descriptor_pb.rb +2 -1
- data/lib/google/protobuf/ffi/descriptor.rb +10 -0
- data/lib/google/protobuf/ffi/enum_descriptor.rb +10 -0
- data/lib/google/protobuf/ffi/ffi.rb +0 -1
- data/lib/google/protobuf/ffi/field_descriptor.rb +10 -0
- data/lib/google/protobuf/ffi/file_descriptor.rb +10 -0
- data/lib/google/protobuf/ffi/internal/convert.rb +1 -5
- data/lib/google/protobuf/ffi/message.rb +1 -3
- data/lib/google/protobuf/ffi/method_descriptor.rb +11 -1
- data/lib/google/protobuf/ffi/oneof_descriptor.rb +10 -0
- data/lib/google/protobuf/ffi/service_descriptor.rb +11 -1
- data/lib/google/protobuf_ffi.rb +2 -1
- metadata +9 -4
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.30.0.rc.1
|
5
5
|
platform: x64-mingw-ucrt
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
|
+
autorequire:
|
8
9
|
bindir: bin
|
9
10
|
cert_chain: []
|
10
|
-
date: 2025-
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
11
12
|
dependencies:
|
12
13
|
- !ruby/object:Gem::Dependency
|
13
14
|
name: rake-compiler-dock
|
@@ -143,6 +144,8 @@ files:
|
|
143
144
|
- ext/google/protobuf_c/third_party/utf8_range/LICENSE
|
144
145
|
- ext/google/protobuf_c/third_party/utf8_range/utf8_range.c
|
145
146
|
- ext/google/protobuf_c/third_party/utf8_range/utf8_range.h
|
147
|
+
- ext/google/protobuf_c/third_party/utf8_range/utf8_range_neon.inc
|
148
|
+
- ext/google/protobuf_c/third_party/utf8_range/utf8_range_sse.inc
|
146
149
|
- ext/google/protobuf_c/wrap_memcpy.c
|
147
150
|
- lib/google/3.1/protobuf_c.so
|
148
151
|
- lib/google/3.2/protobuf_c.so
|
@@ -189,7 +192,8 @@ homepage: https://developers.google.com/protocol-buffers
|
|
189
192
|
licenses:
|
190
193
|
- BSD-3-Clause
|
191
194
|
metadata:
|
192
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v4.
|
195
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v4.30.0-rc1/ruby
|
196
|
+
post_install_message:
|
193
197
|
rdoc_options: []
|
194
198
|
require_paths:
|
195
199
|
- lib
|
@@ -207,7 +211,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
211
|
- !ruby/object:Gem::Version
|
208
212
|
version: '0'
|
209
213
|
requirements: []
|
210
|
-
rubygems_version: 3.
|
214
|
+
rubygems_version: 3.3.27
|
215
|
+
signing_key:
|
211
216
|
specification_version: 4
|
212
217
|
summary: Protocol Buffers
|
213
218
|
test_files: []
|