ormsgpack 1.4.2__tar.gz → 1.6.0__tar.gz

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 ormsgpack might be problematic. Click here for more details.

Files changed (43) hide show
  1. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/CHANGELOG.md +28 -9
  2. ormsgpack-1.6.0/Cargo.lock +317 -0
  3. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/Cargo.toml +17 -16
  4. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/PKG-INFO +203 -177
  5. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/README.md +200 -175
  6. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/pyproject.toml +24 -7
  7. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/python/ormsgpack/__init__.py +21 -3
  8. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/python/ormsgpack/__init__.pyi +4 -1
  9. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/deserialize/deserializer.rs +62 -79
  10. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/exc.rs +0 -2
  11. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/ext.rs +6 -6
  12. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/bytes.rs +4 -4
  13. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/dataclass.rs +67 -46
  14. ormsgpack-1.6.0/src/serialize/datetime.rs +214 -0
  15. ormsgpack-1.6.0/src/serialize/datetimelike.rs +162 -0
  16. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/default.rs +5 -5
  17. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/dict.rs +24 -24
  18. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/ext.rs +6 -6
  19. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/int.rs +4 -4
  20. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/list.rs +8 -10
  21. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/mod.rs +1 -0
  22. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/numpy.rs +256 -7
  23. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/serializer.rs +52 -52
  24. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/str.rs +8 -8
  25. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/tuple.rs +14 -15
  26. ormsgpack-1.6.0/src/serialize/writer.rs +93 -0
  27. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/typeref.rs +24 -16
  28. ormsgpack-1.4.2/Cargo.lock +0 -412
  29. ormsgpack-1.4.2/src/serialize/datetime.rs +0 -277
  30. ormsgpack-1.4.2/src/serialize/writer.rs +0 -213
  31. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/LICENSE-APACHE +0 -0
  32. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/LICENSE-MIT +0 -0
  33. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/build.rs +0 -0
  34. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/python/ormsgpack/py.typed +0 -0
  35. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/deserialize/cache.rs +0 -0
  36. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/deserialize/error.rs +0 -0
  37. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/deserialize/mod.rs +0 -0
  38. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/ffi.rs +0 -0
  39. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/lib.rs +0 -0
  40. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/opt.rs +0 -0
  41. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/serialize/uuid.rs +0 -0
  42. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/unicode.rs +0 -0
  43. {ormsgpack-1.4.2 → ormsgpack-1.6.0}/src/util.rs +0 -0
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.6.0 18/10/2024
4
+
5
+ ### Fixed
6
+
7
+ - Deduplicate map keys also when `OPT_NON_STR_KEYS` is set [#279](/../../issues/279)
8
+ - Add missing type information for Ext type by [trim21](https://github.com/trim21) in [#285](/../../pull/285)
9
+ - Fix type annotation of unpackb first argument
10
+
11
+ ### Changed
12
+
13
+ - Add support for python 3.13
14
+ - Improve test coverage
15
+
16
+ ## 1.5.0 19/04/2024
17
+
18
+ - Add support for numpy datetime64 and float16 types
19
+ - Optimize serialization of dataclasses
20
+ - Optimize deserialization of arrays and maps
21
+
3
22
  ## 1.4.2 28/01/2024
4
23
 
5
24
  ### Fixed
@@ -41,7 +60,7 @@
41
60
 
42
61
  ### Fixed
43
62
 
44
- - `once_cell` poisoning on parallel initialization by (@Quitlox)[https://github.com/Quitlox] in (#153)[https://github.com/aviramha/ormsgpack/pull/153]
63
+ - `once_cell` poisoning on parallel initialization by [@Quitlox](https://github.com/Quitlox) in [#153](/../../pull/153)
45
64
 
46
65
 
47
66
  ## 1.2.5 02/02/2023
@@ -63,7 +82,7 @@
63
82
 
64
83
  ## 1.2.3 - 26/06/2022
65
84
  ### Misc
66
- - Updated dependencies. partially by [@tilman19](https://github.com/aviramha/ormsgpack/pull/101)
85
+ - Updated dependencies. partially by [@tilman19](/../../pull/101)
67
86
  - Handle clippy warnings.
68
87
 
69
88
 
@@ -76,15 +95,15 @@
76
95
  - Update dependencies
77
96
  ## 1.2.0 - 14/2/2022
78
97
  ### Changed
79
- - Extended int passthrough to support u64. by [@pejter](https://github.com/aviramha/ormsgpack/pull/77)
98
+ - Extended int passthrough to support u64. by [@pejter](/../../pull/77)
80
99
  ### Misc
81
- - Updated README to include new options. by [@ThomasTNO](https://github.com/aviramha/ormsgpack/pull/70)
100
+ - Updated README to include new options. by [@ThomasTNO](/../../pull/70)
82
101
  - Updated dependencies
83
102
  - Renamed in `numpy.rs` `from_parent` to `to_children` to fix new lint rules
84
103
  ## 1.1.0 - 8/1/2022
85
104
  ### Added
86
- - Add optional passthrough for tuples. by [@TariqTNO](https://github.com/aviramha/ormsgpack/pull/64)
87
- - Add optional passthrough for ints, that do not fit into an i64. by [@TariqTNO](https://github.com/aviramha/ormsgpack/pull/64)
105
+ - Add optional passthrough for tuples. by [@TariqTNO](/../../pull/64)
106
+ - Add optional passthrough for ints, that do not fit into an i64. by [@TariqTNO](/../../pull/64)
88
107
  ### Changed
89
108
  - `opt` parameter can be `None`.
90
109
  ### Misc
@@ -126,7 +145,7 @@
126
145
  - Refactored adding objects to the module, creating a `__all__` object similar to the way PyO3 creates. This solves an issue with upgrading to new maturin version.
127
146
  - Changed < Py3.7 implementation to use automatic range inclusion.
128
147
  - Added test to validate correct Python method flags are used on declare.
129
- - Changed to use PyO3 configurations instead of our own. PR [#25](https://github.com/aviramha/ormsgpack/pull/25) by [@pejter](https://github.com/pejter).
148
+ - Changed to use PyO3 configurations instead of our own. PR [#25](/../../pull/25) by [@pejter](https://github.com/pejter).
130
149
  ## 0.3.2 - 13/7/2021
131
150
  ### Fixed
132
151
  - Fix memory leak serializing `datetime.datetime` with `tzinfo`. (Copied from orjson)
@@ -136,9 +155,9 @@
136
155
  - Setup dependabot.
137
156
  ## 0.3.1 - 19/6/2021
138
157
  ### Changed
139
- - `packb` of maps and sequences is now almost 2x faster as it leverages known size. PR [#18](https://github.com/aviramha/ormsgpack/pull/18) by [@ijl](https://github.com/ijl).
158
+ - `packb` of maps and sequences is now almost 2x faster as it leverages known size. PR [#18](/../../pull/18) by [@ijl](https://github.com/ijl).
140
159
  ### Misc
141
- - Added `scripts/bench_target.py` and `scripts/profile.sh` for easily benchmarking and profiling. Works only on Linux. PR [#17](https://github.com/aviramha/ormsgpack/pull/17) by [@ijl](https://github.com/ijl).
160
+ - Added `scripts/bench_target.py` and `scripts/profile.sh` for easily benchmarking and profiling. Works only on Linux. PR [#17](/../../pull/17) by [@ijl](https://github.com/ijl).
142
161
  ## 0.3.0 - 13/6/2021
143
162
  ### Added
144
163
  - `unpackb` now accepts keyword argument `option` with argument `OPT_NON_STR_KEYS`. This option will let ormsgpack
@@ -0,0 +1,317 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.11"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "any_all_workaround"
19
+ version = "0.1.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "88fea40735f2cc320a5133ce772d39c571bd6c9b0d4c1a326926eecdd5af2e86"
22
+ dependencies = [
23
+ "cfg-if",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "associative-cache"
28
+ version = "2.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "b993cd767a2bc7307dd87622311ca22c44329cc7a21366206bfa0896827b2bad"
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.3.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
37
+
38
+ [[package]]
39
+ name = "bytecount"
40
+ version = "0.6.8"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
43
+
44
+ [[package]]
45
+ name = "byteorder"
46
+ version = "1.5.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
49
+
50
+ [[package]]
51
+ name = "cfg-if"
52
+ version = "1.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
55
+
56
+ [[package]]
57
+ name = "chrono"
58
+ version = "0.4.38"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
61
+ dependencies = [
62
+ "num-traits",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "crunchy"
67
+ version = "0.2.2"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
70
+
71
+ [[package]]
72
+ name = "encoding_rs"
73
+ version = "0.8.34"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
76
+ dependencies = [
77
+ "any_all_workaround",
78
+ "cfg-if",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "half"
83
+ version = "2.4.1"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
86
+ dependencies = [
87
+ "cfg-if",
88
+ "crunchy",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "itoa"
93
+ version = "1.0.11"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
96
+
97
+ [[package]]
98
+ name = "libc"
99
+ version = "0.2.154"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
102
+
103
+ [[package]]
104
+ name = "memoffset"
105
+ version = "0.9.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
108
+ dependencies = [
109
+ "autocfg",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "num-traits"
114
+ version = "0.2.19"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
117
+ dependencies = [
118
+ "autocfg",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "once_cell"
123
+ version = "1.20.2"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
126
+
127
+ [[package]]
128
+ name = "ormsgpack"
129
+ version = "1.6.0"
130
+ dependencies = [
131
+ "ahash",
132
+ "associative-cache",
133
+ "bytecount",
134
+ "chrono",
135
+ "encoding_rs",
136
+ "half",
137
+ "itoa",
138
+ "once_cell",
139
+ "pyo3",
140
+ "pyo3-build-config",
141
+ "rmp",
142
+ "rmp-serde",
143
+ "serde",
144
+ "serde_bytes",
145
+ "smallvec",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "paste"
150
+ version = "1.0.15"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
153
+
154
+ [[package]]
155
+ name = "portable-atomic"
156
+ version = "1.6.0"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
159
+
160
+ [[package]]
161
+ name = "proc-macro2"
162
+ version = "1.0.82"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
165
+ dependencies = [
166
+ "unicode-ident",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "pyo3"
171
+ version = "0.22.5"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
174
+ dependencies = [
175
+ "cfg-if",
176
+ "libc",
177
+ "memoffset",
178
+ "once_cell",
179
+ "portable-atomic",
180
+ "pyo3-build-config",
181
+ "pyo3-ffi",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "pyo3-build-config"
186
+ version = "0.22.5"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
189
+ dependencies = [
190
+ "once_cell",
191
+ "target-lexicon",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "pyo3-ffi"
196
+ version = "0.22.5"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
199
+ dependencies = [
200
+ "libc",
201
+ "pyo3-build-config",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "quote"
206
+ version = "1.0.36"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
209
+ dependencies = [
210
+ "proc-macro2",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "rmp"
215
+ version = "0.8.14"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
218
+ dependencies = [
219
+ "byteorder",
220
+ "num-traits",
221
+ "paste",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "rmp-serde"
226
+ version = "1.3.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
229
+ dependencies = [
230
+ "byteorder",
231
+ "rmp",
232
+ "serde",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "serde"
237
+ version = "1.0.210"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
240
+ dependencies = [
241
+ "serde_derive",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "serde_bytes"
246
+ version = "0.11.15"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
249
+ dependencies = [
250
+ "serde",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "serde_derive"
255
+ version = "1.0.210"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
258
+ dependencies = [
259
+ "proc-macro2",
260
+ "quote",
261
+ "syn",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "smallvec"
266
+ version = "1.13.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
269
+
270
+ [[package]]
271
+ name = "syn"
272
+ version = "2.0.62"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "9f660c3bfcefb88c538776b6685a0c472e3128b51e74d48793dc2a488196e8eb"
275
+ dependencies = [
276
+ "proc-macro2",
277
+ "quote",
278
+ "unicode-ident",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "target-lexicon"
283
+ version = "0.12.14"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
286
+
287
+ [[package]]
288
+ name = "unicode-ident"
289
+ version = "1.0.12"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
292
+
293
+ [[package]]
294
+ name = "version_check"
295
+ version = "0.9.4"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
298
+
299
+ [[package]]
300
+ name = "zerocopy"
301
+ version = "0.7.34"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
304
+ dependencies = [
305
+ "zerocopy-derive",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "zerocopy-derive"
310
+ version = "0.7.34"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
313
+ dependencies = [
314
+ "proc-macro2",
315
+ "quote",
316
+ "syn",
317
+ ]
@@ -1,12 +1,12 @@
1
1
  [package]
2
2
  name = "ormsgpack"
3
- version = "1.4.2"
3
+ version = "1.6.0"
4
4
  authors = [
5
5
  "Aviram Hassan <aviramyhassan@gmail.com>",
6
6
  "Emanuele Giaquinta <emanuele.giaquinta@gmail.com>",
7
7
  ]
8
8
  description = "Fast, correct Python msgpack library supporting dataclasses, datetimes, and numpy"
9
- edition = "2018"
9
+ edition = "2021"
10
10
  license = "Apache-2.0 OR MIT"
11
11
  repository = "https://github.com/aviramha/ormsgpack"
12
12
  homepage = "https://github.com/aviramha/ormsgpack"
@@ -37,22 +37,23 @@ unstable-simd = [
37
37
  ]
38
38
 
39
39
  [dependencies]
40
- ahash = { version = "0.8", default_features = false }
41
- associative-cache = { version = "2", default_features = false }
42
- bytecount = { version = "^0.6.7", default_features = false, features = ["runtime-dispatch-simd"] }
43
- encoding_rs = { version = "0.8", default_features = false }
44
- itoa = { version = "1", default_features = false }
45
- once_cell = { version = "1", default_features = false, features = ["race"] }
46
- pyo3 = { version = "^0.20.2", default_features = false, features = ["extension-module"] }
47
- rmp = { version = "^0.8.10", default_features = false, features = ["std"] }
48
- rmp-serde = { version = "1", default_features = false }
49
- serde = { version = "1", default_features = false }
50
- serde_bytes = { version = "0.11.14", default_features = false, features = ["std"] }
51
- simdutf8 = { version = "0.1", default_features = false, features = ["std", "aarch64_neon"] }
52
- smallvec = { version = "^1.13", default_features = false, features = ["union", "write"] }
40
+ ahash = { version = "0.8", default-features = false }
41
+ associative-cache = { version = "2", default-features = false }
42
+ bytecount = { version = "^0.6.7", default-features = false, features = ["runtime-dispatch-simd"] }
43
+ chrono = { version = "0.4.38", default-features = false }
44
+ encoding_rs = { version = "0.8", default-features = false }
45
+ half = { version = "2.4.1", default-features = false }
46
+ itoa = { version = "1", default-features = false }
47
+ once_cell = { version = "1", default-features = false, features = ["race"] }
48
+ pyo3 = { version = "^0.22.5", default-features = false, features = ["extension-module"] }
49
+ rmp = { version = "^0.8.14", default-features = false, features = ["std"] }
50
+ rmp-serde = { version = "1", default-features = false }
51
+ serde = { version = "1", default-features = false }
52
+ serde_bytes = { version = "0.11.15", default-features = false, features = ["std"] }
53
+ smallvec = { version = "^1.13", default-features = false, features = ["union", "write"] }
53
54
 
54
55
  [build-dependencies]
55
- pyo3-build-config = { version = "^0.20.0" }
56
+ pyo3-build-config = { version = "^0.22.0" }
56
57
 
57
58
  [profile.release]
58
59
  codegen-units = 1