google-protobuf 3.19.3-x86-mingw32 → 3.20.0.rc.2-x86-mingw32
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.
Potentially problematic release.
This version of google-protobuf might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/convert.c +128 -115
- data/ext/google/protobuf_c/convert.h +12 -9
- data/ext/google/protobuf_c/defs.c +197 -201
- data/ext/google/protobuf_c/defs.h +19 -19
- data/ext/google/protobuf_c/extconf.rb +11 -3
- data/ext/google/protobuf_c/map.c +109 -101
- data/ext/google/protobuf_c/map.h +7 -8
- data/ext/google/protobuf_c/message.c +378 -305
- data/ext/google/protobuf_c/message.h +22 -19
- data/ext/google/protobuf_c/protobuf.c +68 -58
- data/ext/google/protobuf_c/protobuf.h +13 -10
- data/ext/google/protobuf_c/repeated_field.c +82 -84
- data/ext/google/protobuf_c/repeated_field.h +6 -6
- data/ext/google/protobuf_c/ruby-upb.c +5054 -3110
- data/ext/google/protobuf_c/ruby-upb.h +2838 -1930
- data/ext/google/protobuf_c/third_party/utf8_range/LICENSE +21 -0
- data/ext/google/protobuf_c/third_party/utf8_range/naive.c +92 -0
- data/ext/google/protobuf_c/third_party/utf8_range/range2-neon.c +157 -0
- data/ext/google/protobuf_c/third_party/utf8_range/range2-sse.c +170 -0
- data/ext/google/protobuf_c/third_party/utf8_range/utf8_range.h +9 -0
- data/ext/google/protobuf_c/wrap_memcpy.c +4 -3
- data/lib/google/2.5/protobuf_c.so +0 -0
- data/lib/google/2.6/protobuf_c.so +0 -0
- data/lib/google/2.7/protobuf_c.so +0 -0
- data/lib/google/3.0/protobuf_c.so +0 -0
- data/lib/google/protobuf/descriptor_dsl.rb +8 -1
- data/lib/google/protobuf/descriptor_pb.rb +3 -2
- data/lib/google/protobuf/message_exts.rb +2 -2
- data/lib/google/protobuf/well_known_types.rb +11 -6
- data/lib/google/protobuf.rb +4 -4
- data/tests/basic.rb +30 -0
- metadata +10 -5
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.20.0.rc.2
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler-dock
|
@@ -79,6 +79,11 @@ files:
|
|
79
79
|
- ext/google/protobuf_c/repeated_field.h
|
80
80
|
- ext/google/protobuf_c/ruby-upb.c
|
81
81
|
- ext/google/protobuf_c/ruby-upb.h
|
82
|
+
- ext/google/protobuf_c/third_party/utf8_range/LICENSE
|
83
|
+
- ext/google/protobuf_c/third_party/utf8_range/naive.c
|
84
|
+
- ext/google/protobuf_c/third_party/utf8_range/range2-neon.c
|
85
|
+
- ext/google/protobuf_c/third_party/utf8_range/range2-sse.c
|
86
|
+
- ext/google/protobuf_c/third_party/utf8_range/utf8_range.h
|
82
87
|
- ext/google/protobuf_c/wrap_memcpy.c
|
83
88
|
- lib/google/2.5/protobuf_c.so
|
84
89
|
- lib/google/2.6/protobuf_c.so
|
@@ -107,7 +112,7 @@ homepage: https://developers.google.com/protocol-buffers
|
|
107
112
|
licenses:
|
108
113
|
- BSD-3-Clause
|
109
114
|
metadata:
|
110
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.
|
115
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.20.0-rc2/ruby
|
111
116
|
post_install_message:
|
112
117
|
rdoc_options: []
|
113
118
|
require_paths:
|
@@ -122,9 +127,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
127
|
version: 3.1.dev
|
123
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
129
|
requirements:
|
125
|
-
- - "
|
130
|
+
- - ">"
|
126
131
|
- !ruby/object:Gem::Version
|
127
|
-
version:
|
132
|
+
version: 1.3.1
|
128
133
|
requirements: []
|
129
134
|
rubygems_version: 3.2.3
|
130
135
|
signing_key:
|