protobuf-protoc-bin 32.1__py2.py3-none-win_amd64.whl → 33.0__py2.py3-none-win_amd64.whl

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.
Files changed (22) hide show
  1. protobuf_protoc_bin/_version.py +2 -2
  2. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/descriptor.proto +3 -0
  3. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/timestamp.proto +7 -6
  4. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/scripts/protoc.exe +0 -0
  5. {protobuf_protoc_bin-32.1.dist-info → protobuf_protoc_bin-33.0.dist-info}/METADATA +1 -1
  6. protobuf_protoc_bin-33.0.dist-info/RECORD +22 -0
  7. protobuf_protoc_bin-32.1.dist-info/RECORD +0 -22
  8. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/any.proto +0 -0
  9. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/api.proto +0 -0
  10. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/compiler/plugin.proto +0 -0
  11. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/cpp_features.proto +0 -0
  12. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/duration.proto +0 -0
  13. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/empty.proto +0 -0
  14. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/field_mask.proto +0 -0
  15. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/go_features.proto +0 -0
  16. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/java_features.proto +0 -0
  17. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/source_context.proto +0 -0
  18. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/struct.proto +0 -0
  19. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/type.proto +0 -0
  20. {protobuf_protoc_bin-32.1.data → protobuf_protoc_bin-33.0.data}/data/include/google/protobuf/wrappers.proto +0 -0
  21. {protobuf_protoc_bin-32.1.dist-info → protobuf_protoc_bin-33.0.dist-info}/WHEEL +0 -0
  22. {protobuf_protoc_bin-32.1.dist-info → protobuf_protoc_bin-33.0.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '32.1'
32
- __version_tuple__ = version_tuple = (32, 1)
31
+ __version__ = version = '33.0'
32
+ __version_tuple__ = version_tuple = (33, 0)
33
33
 
34
34
  __commit_id__ = commit_id = 'g2db8a4fa3'
@@ -398,6 +398,9 @@ message ServiceDescriptorProto {
398
398
  repeated MethodDescriptorProto method = 2;
399
399
 
400
400
  optional ServiceOptions options = 3;
401
+
402
+ reserved 4;
403
+ reserved "stream";
401
404
  }
402
405
 
403
406
  // Describes a method of a service.
@@ -131,14 +131,15 @@ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
131
131
  // ) to obtain a formatter capable of generating timestamps in this format.
132
132
  //
133
133
  message Timestamp {
134
- // Represents seconds of UTC time since Unix epoch
135
- // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
136
- // 9999-12-31T23:59:59Z inclusive.
134
+ // Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
135
+ // be between -315576000000 and 315576000000 inclusive (which corresponds to
136
+ // 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z).
137
137
  int64 seconds = 1;
138
138
 
139
- // Non-negative fractions of a second at nanosecond resolution. Negative
140
- // second values with fractions must still have non-negative nanos values
141
- // that count forward in time. Must be from 0 to 999,999,999
139
+ // Non-negative fractions of a second at nanosecond resolution. This field is
140
+ // the nanosecond portion of the duration, not an alternative to seconds.
141
+ // Negative second values with fractions must still have non-negative nanos
142
+ // values that count forward in time. Must be between 0 and 999,999,999
142
143
  // inclusive.
143
144
  int32 nanos = 2;
144
145
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: protobuf-protoc-bin
3
- Version: 32.1
3
+ Version: 33.0
4
4
  Summary: Pip package to host the protobuf protoc binary
5
5
  Author-email: Robert Roos <robert.roos@demcon.com>
6
6
  Project-URL: Repository, https://github.com/RobertoRoos/protobuf-protoc-bin
@@ -0,0 +1,22 @@
1
+ protobuf_protoc_bin/__init__.py,sha256=G_RoeZn3_WVSAMUsluFtdO7mfCiZnRz44zXfU9IyPKQ,221
2
+ protobuf_protoc_bin/_version.py,sha256=Vpa7wecUwk2JAV9xaTFfPpoPI0s3sGF0wyUNwteVh0o,743
3
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/any.proto,sha256=vPXebORjsaOP92t3lVqn5YC07BKvNKknsdRcnvsPr2Y,6154
4
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/api.proto,sha256=bUfWJy62h8gGtv6wjvOSUkPGTqB2zZRAt4PienrsVQI,8845
5
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/cpp_features.proto,sha256=Cwsd_msm8JKllNN--EAX8RxqL4hfZMER0gmyLnLKYtU,2186
6
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/descriptor.proto,sha256=lmD1cnSLnJjPKuouk3-UgbfBxdW6DbtVaTakxaXxwnE,57695
7
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/duration.proto,sha256=o_cwH_KVbsLjDCJB7OBxl-SobHUjSNVgciSBnUkhyf4,4892
8
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/empty.proto,sha256=7O89VMyeB5ZzuYFsZ7rHcPfzv22totRZa6adcdqpceY,2363
9
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/field_mask.proto,sha256=F7DzQsw6Ji4xfVaITz9XWvv6xRKtBXk0nMdFDkHyaJE,8185
10
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/go_features.proto,sha256=xiON7PHf9sLIX47dtOQ9MPY-XmPovuQRq8HpkC7iMKQ,2536
11
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/java_features.proto,sha256=rAJT8jb5OSqcccGyEpe8fKiSSW7VULEsk9Ckro5BIN8,4899
12
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/source_context.proto,sha256=N9NAHeia8dFJb8lJkkpfIBG9L6376w2hyqJ3FZqWd20,2341
13
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/struct.proto,sha256=G_B7qLmiTjoDkN3aw60NtBxjKH0lJ4iwI5giC5q8kA8,3778
14
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/timestamp.proto,sha256=ecm7VB_dUiFMo9OiyZHg3-xbsqmgW6LgYeP8aLRgQH0,6600
15
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/type.proto,sha256=UKO2e02JToKBczGar81qxEDBU0AEhFK9E6E-i0fMZjc,7774
16
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/wrappers.proto,sha256=aHjcdTTPmAXu5WNFzcOLXpyjneziRnEMZjxwB6Z_70k,5392
17
+ protobuf_protoc_bin-33.0.data/data/include/google/protobuf/compiler/plugin.proto,sha256=j172w2-tjmbjNHwPjYkQ37FCObjM_SqNFtuo53W1e38,8556
18
+ protobuf_protoc_bin-33.0.data/scripts/protoc.exe,sha256=N0kvqL3xDSTg3GxIctz0HVslcQ4scRQhb4GjjkVqJiY,12693164
19
+ protobuf_protoc_bin-33.0.dist-info/METADATA,sha256=eF1Oe52sGW7pQafVBfItqnTINNuPyayuJX0Sr1HVyOM,3405
20
+ protobuf_protoc_bin-33.0.dist-info/WHEEL,sha256=AU4K3vx0ALFGVA9GWyeLyeJQNhYimMCMr9RHwrlu0t4,121
21
+ protobuf_protoc_bin-33.0.dist-info/top_level.txt,sha256=afBaZDfluZv1nGzi4GoHBIk52GjoHfFL1zEMio0q_YA,20
22
+ protobuf_protoc_bin-33.0.dist-info/RECORD,,
@@ -1,22 +0,0 @@
1
- protobuf_protoc_bin/__init__.py,sha256=G_RoeZn3_WVSAMUsluFtdO7mfCiZnRz44zXfU9IyPKQ,221
2
- protobuf_protoc_bin/_version.py,sha256=e2WAgLnkccX570GyLgWWAv-PVQ-xG-__SEgFXQY_K0M,743
3
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/any.proto,sha256=vPXebORjsaOP92t3lVqn5YC07BKvNKknsdRcnvsPr2Y,6154
4
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/api.proto,sha256=bUfWJy62h8gGtv6wjvOSUkPGTqB2zZRAt4PienrsVQI,8845
5
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/cpp_features.proto,sha256=Cwsd_msm8JKllNN--EAX8RxqL4hfZMER0gmyLnLKYtU,2186
6
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/descriptor.proto,sha256=Bhuvj2mBC5gdXTMgTiZlyNPyVbkCM29_U11L2HkONa0,57659
7
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/duration.proto,sha256=o_cwH_KVbsLjDCJB7OBxl-SobHUjSNVgciSBnUkhyf4,4892
8
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/empty.proto,sha256=7O89VMyeB5ZzuYFsZ7rHcPfzv22totRZa6adcdqpceY,2363
9
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/field_mask.proto,sha256=F7DzQsw6Ji4xfVaITz9XWvv6xRKtBXk0nMdFDkHyaJE,8185
10
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/go_features.proto,sha256=xiON7PHf9sLIX47dtOQ9MPY-XmPovuQRq8HpkC7iMKQ,2536
11
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/java_features.proto,sha256=rAJT8jb5OSqcccGyEpe8fKiSSW7VULEsk9Ckro5BIN8,4899
12
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/source_context.proto,sha256=N9NAHeia8dFJb8lJkkpfIBG9L6376w2hyqJ3FZqWd20,2341
13
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/struct.proto,sha256=G_B7qLmiTjoDkN3aw60NtBxjKH0lJ4iwI5giC5q8kA8,3778
14
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/timestamp.proto,sha256=FAUsYELB3S0LUCRfKBLqq26vgtsLbozkg-rlJ_c7bug,6449
15
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/type.proto,sha256=UKO2e02JToKBczGar81qxEDBU0AEhFK9E6E-i0fMZjc,7774
16
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/wrappers.proto,sha256=aHjcdTTPmAXu5WNFzcOLXpyjneziRnEMZjxwB6Z_70k,5392
17
- protobuf_protoc_bin-32.1.data/data/include/google/protobuf/compiler/plugin.proto,sha256=j172w2-tjmbjNHwPjYkQ37FCObjM_SqNFtuo53W1e38,8556
18
- protobuf_protoc_bin-32.1.data/scripts/protoc.exe,sha256=zRE2512rW6sUbJgXNvPLjErJi3F6D0-8CmWoL2yIOxY,12616073
19
- protobuf_protoc_bin-32.1.dist-info/METADATA,sha256=oIha15AwtRfDyZqM7DmTWuM0lZJxzp4EyMC-njo4K0I,3405
20
- protobuf_protoc_bin-32.1.dist-info/WHEEL,sha256=AU4K3vx0ALFGVA9GWyeLyeJQNhYimMCMr9RHwrlu0t4,121
21
- protobuf_protoc_bin-32.1.dist-info/top_level.txt,sha256=afBaZDfluZv1nGzi4GoHBIk52GjoHfFL1zEMio0q_YA,20
22
- protobuf_protoc_bin-32.1.dist-info/RECORD,,