Commit cadb1aa
authored
File tree
10 files changed
+55
-28
lines changed- scripts
- vendor
10 files changed
+55
-28
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | | - | |
| 43 | + | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
57 | | - | |
| 56 | + | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
35 | | - | |
| 34 | + | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| 51 | + | |
51 | 52 | | |
52 | 53 | | |
53 | 54 | | |
| |||
70 | 71 | | |
71 | 72 | | |
72 | 73 | | |
| 74 | + | |
73 | 75 | | |
74 | 76 | | |
75 | 77 | | |
| |||
91 | 93 | | |
92 | 94 | | |
93 | 95 | | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | 96 | | |
99 | 97 | | |
100 | 98 | | |
| |||
103 | 101 | | |
104 | 102 | | |
105 | 103 | | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
106 | 112 | | |
107 | 113 | | |
108 | 114 | | |
| |||
111 | 117 | | |
112 | 118 | | |
113 | 119 | | |
114 | | - | |
115 | | - | |
| 120 | + | |
| 121 | + | |
116 | 122 | | |
117 | 123 | | |
118 | 124 | | |
| |||
135 | 141 | | |
136 | 142 | | |
137 | 143 | | |
138 | | - | |
139 | | - | |
140 | | - | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
141 | 147 | | |
142 | 148 | | |
143 | 149 | | |
| |||
282 | 288 | | |
283 | 289 | | |
284 | 290 | | |
285 | | - | |
286 | | - | |
| 291 | + | |
| 292 | + | |
287 | 293 | | |
288 | | - | |
289 | | - | |
| 294 | + | |
| 295 | + | |
290 | 296 | | |
291 | 297 | | |
292 | 298 | | |
| |||
401 | 407 | | |
402 | 408 | | |
403 | 409 | | |
404 | | - | |
| 410 | + | |
405 | 411 | | |
406 | 412 | | |
407 | 413 | | |
| |||
415 | 421 | | |
416 | 422 | | |
417 | 423 | | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
| 428 | + | |
| 429 | + | |
| 430 | + | |
| 431 | + | |
| 432 | + | |
| 433 | + | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
418 | 437 | | |
419 | 438 | | |
420 | 439 | | |
| |||
427 | 446 | | |
428 | 447 | | |
429 | 448 | | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
430 | 452 | | |
431 | 453 | | |
432 | 454 | | |
433 | 455 | | |
434 | 456 | | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
Submodule karax updated from f1cd9e6 to 32de202
Submodule nim-protobuf-serialization updated 57 files
- .github/workflows/ci.yml+186
- .gitignore+2
- README.md+60-3
- protobuf_serialization.nim+36-376
- protobuf_serialization.nimble+33-5
- protobuf_serialization/files/decldef.nim+174
- protobuf_serialization/files/proto_parser.nim+231
- protobuf_serialization/files/type_generator.nim+135
- protobuf_serialization/internal.nim+296
- protobuf_serialization/numbers/common.nim+87
- protobuf_serialization/numbers/fixed.nim+85
- protobuf_serialization/numbers/varint.nim+283
- protobuf_serialization/pb_option.nim+37
- protobuf_serialization/reader.nim+276
- protobuf_serialization/stdlib_readers.nim+116
- protobuf_serialization/stdlib_writers.nim+136
- protobuf_serialization/types.nim+53
- protobuf_serialization/writer.nim+236
- tests/config.nims+1-1
- tests/fail/test_cstring.nim+5
- tests/fail/test_invalid_byte_encoding.nim+6
- tests/fail/test_invalid_float_bits.nim+6
- tests/fail/test_invalid_float_encoding.nim+6
- tests/fail/test_invalid_nested_object.nim+10
- tests/fail/test_invalid_uint_encoding.nim+6
- tests/fail/test_multiple_int_encodings.nim+6
- tests/fail/test_multiple_uint_encodings.nim+6
- tests/fail/test_negative_field_number.nim+6
- tests/fail/test_no_field_number.nim+6
- tests/fail/test_no_int_encoding.nim+6
- tests/fail/test_no_uint_encoding.nim+6
- tests/fail/test_reused_field_number.nim+7
- tests/fail/test_specified_byte_encoding.nim+6
- tests/fail/test_specified_float_encoding.nim+6
- tests/fail/test_table.nim+5
- tests/fail/test_too_high_field_number.nim+10
- tests/fail/test_tuple.nim+3
- tests/fail/test_unspecified_float_bits.nim+6
- tests/fail/test_unspecified_int_bits.nim+6
- tests/fail/test_unspecified_uint_bits.nim+6
- tests/fail/test_zero_field_number.nim+6
- tests/files/test.proto3+41
- tests/files/test_proto3.nim+79
- tests/files/to_test.proto3+67
- tests/test_all.nim+21
- tests/test_bool.nim+56
- tests/test_different_types.nim+31
- tests/test_empty.nim+54
- tests/test_fixed.nim+46
- tests/test_length_delimited.nim+69
- tests/test_lint.nim+52
- tests/test_objects.nim+294
- tests/test_options.nim+139
- tests/test_protobuf2_semantics.nim+75
- tests/test_serialization.nim-280
- tests/test_stdlib.nim+88
- tests/test_thirty_three_fields.nim+77
0 commit comments