gef-file-to-map 0.2.1__tar.gz → 1.0.1__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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": ["config:recommended", "group:allNonMajor", ":automergeAll"]
3
+ }
@@ -12,7 +12,7 @@ jobs:
12
12
  linux:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v4
15
+ - uses: actions/checkout@v6
16
16
  - uses: actions-rs/toolchain@v1
17
17
  with:
18
18
  toolchain: stable
@@ -24,7 +24,7 @@ jobs:
24
24
  command: build
25
25
  args: --release --sdist -o dist
26
26
  - name: Upload wheels
27
- uses: actions/upload-artifact@v4
27
+ uses: actions/upload-artifact@v6
28
28
  with:
29
29
  name: wheels-linux
30
30
  path: dist
@@ -32,7 +32,7 @@ jobs:
32
32
  windows:
33
33
  runs-on: windows-latest
34
34
  steps:
35
- - uses: actions/checkout@v4
35
+ - uses: actions/checkout@v6
36
36
  - uses: actions-rs/toolchain@v1
37
37
  with:
38
38
  toolchain: stable
@@ -43,7 +43,7 @@ jobs:
43
43
  command: build
44
44
  args: --release -o dist
45
45
  - name: Upload wheels
46
- uses: actions/upload-artifact@v4
46
+ uses: actions/upload-artifact@v6
47
47
  with:
48
48
  name: wheels-windows
49
49
  path: dist
@@ -51,7 +51,7 @@ jobs:
51
51
  macos:
52
52
  runs-on: macos-latest
53
53
  steps:
54
- - uses: actions/checkout@v4
54
+ - uses: actions/checkout@v6
55
55
  - uses: actions-rs/toolchain@v1
56
56
  with:
57
57
  toolchain: stable
@@ -62,7 +62,7 @@ jobs:
62
62
  command: build
63
63
  args: --release -o dist
64
64
  - name: Upload wheels
65
- uses: actions/upload-artifact@v4
65
+ uses: actions/upload-artifact@v6
66
66
  with:
67
67
  name: wheels-macos
68
68
  path: dist
@@ -83,10 +83,10 @@ jobs:
83
83
  # Used to generate artifact attestation
84
84
  attestations: write
85
85
  steps:
86
- - uses: actions/download-artifact@v4
86
+ - uses: actions/download-artifact@v7
87
87
 
88
88
  - name: Generate artifact attestation
89
- uses: actions/attest-build-provenance@v2
89
+ uses: actions/attest-build-provenance@v3
90
90
  with:
91
91
  subject-path: "wheels-*/*"
92
92
 
@@ -0,0 +1,17 @@
1
+ # Generated by Cargo
2
+ # will have compiled files and executables
3
+ /target/
4
+
5
+ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6
+ # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
7
+ Cargo.lock
8
+
9
+ # These are backup files generated by rustfmt
10
+ **/*.rs.bk
11
+
12
+
13
+ # Added by cargo
14
+
15
+ /target
16
+
17
+ .env
@@ -0,0 +1,77 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.0.1] - 2026-02-05
6
+
7
+ ### Bug Fixes
8
+ - *Deps*: Update rust crate pyo3 to 0.28.0 (#15)
9
+ - *Python*: Match ABI version with minimum supported Python
10
+
11
+ ### Miscellaneous Tasks
12
+ - *Renovate*: Automerge all changes that pass the tests
13
+
14
+ ### Testing
15
+ - *Whitespace*: GEF file with tabs around the keys
16
+
17
+ ## [1.0.0] - 2025-10-31
18
+
19
+ ### Bug Fixes
20
+
21
+ - *Deps*:
22
+ - Update rust crates pyo3, winnow and thiserror
23
+ - Update rust crate pyo3 to 0.27.0
24
+ - Update rust crate pyo3 to 0.26.0
25
+ - Update rust crate pyo3 to 0.25.0
26
+ - *Python*: [**BREAKING**]Bump minimum supported Python version to 3.11
27
+
28
+ ## [0.2.1] - 2025-07-22
29
+
30
+ ### Bug Fixes
31
+ - *Header*: Allow empty header values
32
+
33
+ ### Documentation
34
+ - *Readme*: Don't link to specific version in PyPi badge
35
+
36
+ ### Miscellaneous Tasks
37
+ - *Ci*: Move from dependabot to renovate
38
+
39
+ ### Testing
40
+ - *Bench*: Add benchmarks
41
+
42
+ ## [0.2.0] - 2025-03-10
43
+
44
+ ### Bug Fixes
45
+ - *Ci*: Manually install Rust pipeline in CI
46
+ - *Deps*: Update nom to 8
47
+
48
+ ### Refactor
49
+ - *Deps*: Migrate nom to winnow 0.3
50
+ - *Parsing*: [**BREAKING**]Improve parsing of headers and add better error reporting
51
+
52
+ ## [0.1.1] - 2025-03-10
53
+
54
+ ### Bug Fixes
55
+ - *Ci*: Fix publishing CI
56
+
57
+ ### Documentation
58
+ - Fix error in example
59
+ - Add pypi version badge
60
+
61
+ ### Miscellaneous Tasks
62
+ - *Ci*: Only run release CI on tags
63
+ - Update dependencies
64
+ - Update dependencies
65
+
66
+ ## [0.1.0] - 2023-02-22
67
+
68
+ ### Bug Fixes
69
+
70
+ - *Ci*:
71
+ - Copy wheel generation from @messense
72
+ - Require minimum Python version of 3.8
73
+
74
+ ### Refactor
75
+ - Move from pygef repo
76
+
77
+ <!-- CEMS BV. -->
@@ -0,0 +1,396 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstyle"
7
+ version = "1.0.13"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
10
+
11
+ [[package]]
12
+ name = "bitflags"
13
+ version = "2.10.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
16
+
17
+ [[package]]
18
+ name = "cfg-if"
19
+ version = "1.0.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
22
+
23
+ [[package]]
24
+ name = "clap"
25
+ version = "4.5.57"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
28
+ dependencies = [
29
+ "clap_builder",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "clap_builder"
34
+ version = "4.5.57"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
37
+ dependencies = [
38
+ "anstyle",
39
+ "clap_lex",
40
+ "terminal_size",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "clap_lex"
45
+ version = "0.7.7"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
48
+
49
+ [[package]]
50
+ name = "condtype"
51
+ version = "1.3.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
54
+
55
+ [[package]]
56
+ name = "divan"
57
+ version = "0.1.21"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "a405457ec78b8fe08b0e32b4a3570ab5dff6dd16eb9e76a5ee0a9d9cbd898933"
60
+ dependencies = [
61
+ "cfg-if",
62
+ "clap",
63
+ "condtype",
64
+ "divan-macros",
65
+ "libc",
66
+ "regex-lite",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "divan-macros"
71
+ version = "0.1.21"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "9556bc800956545d6420a640173e5ba7dfa82f38d3ea5a167eb555bc69ac3323"
74
+ dependencies = [
75
+ "proc-macro2",
76
+ "quote",
77
+ "syn",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "either"
82
+ version = "1.15.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
85
+
86
+ [[package]]
87
+ name = "errno"
88
+ version = "0.3.14"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
91
+ dependencies = [
92
+ "libc",
93
+ "windows-sys 0.61.2",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "gef-file-to-map"
98
+ version = "1.0.1"
99
+ dependencies = [
100
+ "divan",
101
+ "itertools",
102
+ "pyo3",
103
+ "thiserror",
104
+ "winnow",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "heck"
109
+ version = "0.5.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
112
+
113
+ [[package]]
114
+ name = "itertools"
115
+ version = "0.14.0"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
118
+ dependencies = [
119
+ "either",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "libc"
124
+ version = "0.2.180"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
127
+
128
+ [[package]]
129
+ name = "linux-raw-sys"
130
+ version = "0.11.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
133
+
134
+ [[package]]
135
+ name = "memchr"
136
+ version = "2.7.6"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
139
+
140
+ [[package]]
141
+ name = "once_cell"
142
+ version = "1.21.3"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
145
+
146
+ [[package]]
147
+ name = "portable-atomic"
148
+ version = "1.13.1"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
151
+
152
+ [[package]]
153
+ name = "proc-macro2"
154
+ version = "1.0.106"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
157
+ dependencies = [
158
+ "unicode-ident",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "pyo3"
163
+ version = "0.28.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "fcf3ccafdf54c050be48a3a086d372f77ba6615f5057211607cd30e5ac5cec6d"
166
+ dependencies = [
167
+ "libc",
168
+ "once_cell",
169
+ "portable-atomic",
170
+ "pyo3-build-config",
171
+ "pyo3-ffi",
172
+ "pyo3-macros",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "pyo3-build-config"
177
+ version = "0.28.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "972720a441c91fd9c49f212a1d2d74c6e3803b231ebc8d66c51efbd7ccab11c8"
180
+ dependencies = [
181
+ "target-lexicon",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "pyo3-ffi"
186
+ version = "0.28.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "5994456d9dab8934d600d3867571b6410f24fbd6002570ad56356733eb54859b"
189
+ dependencies = [
190
+ "libc",
191
+ "pyo3-build-config",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "pyo3-macros"
196
+ version = "0.28.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "11ce9cc8d81b3c4969748807604d92b4eef363c5bb82b1a1bdb34ec6f1093a18"
199
+ dependencies = [
200
+ "proc-macro2",
201
+ "pyo3-macros-backend",
202
+ "quote",
203
+ "syn",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "pyo3-macros-backend"
208
+ version = "0.28.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "eaf4b60036a154d23282679b658e3cc7d88d3b8c9a40b43824785f232d2e1b98"
211
+ dependencies = [
212
+ "heck",
213
+ "proc-macro2",
214
+ "pyo3-build-config",
215
+ "quote",
216
+ "syn",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "quote"
221
+ version = "1.0.44"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
224
+ dependencies = [
225
+ "proc-macro2",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "regex-lite"
230
+ version = "0.1.9"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
233
+
234
+ [[package]]
235
+ name = "rustix"
236
+ version = "1.1.3"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
239
+ dependencies = [
240
+ "bitflags",
241
+ "errno",
242
+ "libc",
243
+ "linux-raw-sys",
244
+ "windows-sys 0.61.2",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "syn"
249
+ version = "2.0.114"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
252
+ dependencies = [
253
+ "proc-macro2",
254
+ "quote",
255
+ "unicode-ident",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "target-lexicon"
260
+ version = "0.13.4"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
263
+
264
+ [[package]]
265
+ name = "terminal_size"
266
+ version = "0.4.3"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
269
+ dependencies = [
270
+ "rustix",
271
+ "windows-sys 0.60.2",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "thiserror"
276
+ version = "2.0.18"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
279
+ dependencies = [
280
+ "thiserror-impl",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "thiserror-impl"
285
+ version = "2.0.18"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
288
+ dependencies = [
289
+ "proc-macro2",
290
+ "quote",
291
+ "syn",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "unicode-ident"
296
+ version = "1.0.22"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
299
+
300
+ [[package]]
301
+ name = "windows-link"
302
+ version = "0.2.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
305
+
306
+ [[package]]
307
+ name = "windows-sys"
308
+ version = "0.60.2"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
311
+ dependencies = [
312
+ "windows-targets",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "windows-sys"
317
+ version = "0.61.2"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
320
+ dependencies = [
321
+ "windows-link",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "windows-targets"
326
+ version = "0.53.5"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
329
+ dependencies = [
330
+ "windows-link",
331
+ "windows_aarch64_gnullvm",
332
+ "windows_aarch64_msvc",
333
+ "windows_i686_gnu",
334
+ "windows_i686_gnullvm",
335
+ "windows_i686_msvc",
336
+ "windows_x86_64_gnu",
337
+ "windows_x86_64_gnullvm",
338
+ "windows_x86_64_msvc",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "windows_aarch64_gnullvm"
343
+ version = "0.53.1"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
346
+
347
+ [[package]]
348
+ name = "windows_aarch64_msvc"
349
+ version = "0.53.1"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
352
+
353
+ [[package]]
354
+ name = "windows_i686_gnu"
355
+ version = "0.53.1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
358
+
359
+ [[package]]
360
+ name = "windows_i686_gnullvm"
361
+ version = "0.53.1"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
364
+
365
+ [[package]]
366
+ name = "windows_i686_msvc"
367
+ version = "0.53.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
370
+
371
+ [[package]]
372
+ name = "windows_x86_64_gnu"
373
+ version = "0.53.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
376
+
377
+ [[package]]
378
+ name = "windows_x86_64_gnullvm"
379
+ version = "0.53.1"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
382
+
383
+ [[package]]
384
+ name = "windows_x86_64_msvc"
385
+ version = "0.53.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
388
+
389
+ [[package]]
390
+ name = "winnow"
391
+ version = "0.7.14"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
394
+ dependencies = [
395
+ "memchr",
396
+ ]
@@ -1,14 +1,15 @@
1
1
  [package]
2
2
  name = "gef-file-to-map"
3
- version = "0.2.1"
3
+ version = "1.0.1"
4
4
  edition = "2024"
5
5
  rust-version = "1.85.0"
6
+ readme = "README.md"
6
7
 
7
8
  [dependencies]
8
9
  itertools = "0.14.0"
9
- pyo3 = { version = "0.24.2", features = ["extension-module", "abi3-py37"] }
10
- thiserror = "2.0.12"
11
- winnow = "0.7.7"
10
+ pyo3 = { version = "0.28.0", features = ["extension-module", "abi3-py311"] }
11
+ thiserror = "2.0.18"
12
+ winnow = "0.7.14"
12
13
 
13
14
  [dev-dependencies]
14
15
  divan = "0.1.21"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gef-file-to-map
3
- Version: 0.2.1
3
+ Version: 1.0.1
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -8,7 +8,7 @@ License-File: LICENSE
8
8
  Summary: Utility library for parsing .gef files
9
9
  Keywords: gef,pygef
10
10
  Author-email: Thomas Versteeg <t.versteeg@cemsbv.io>
11
- Requires-Python: >=3.7
11
+ Requires-Python: >=3.11
12
12
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
13
13
  Project-URL: repository, https://github.com/cemsbv/gef-file-to-map
14
14
 
@@ -1,16 +1,16 @@
1
1
  [project]
2
2
  name = "gef-file-to-map"
3
- version = "0.2.1"
3
+ version = "1.0.1"
4
4
  description = "Utility library for parsing .gef files"
5
- requires-python = ">=3.7"
5
+ requires-python = ">=3.11"
6
6
  readme = "README.md"
7
7
  license = { file = "LICENSE" }
8
8
  keywords = ["gef", "pygef"]
9
9
  authors = [{ name = "Thomas Versteeg", email = "t.versteeg@cemsbv.io" }]
10
10
  classifiers = [
11
- "Programming Language :: Rust",
12
- "Programming Language :: Python :: Implementation :: CPython",
13
- "Programming Language :: Python :: Implementation :: PyPy",
11
+ "Programming Language :: Rust",
12
+ "Programming Language :: Python :: Implementation :: CPython",
13
+ "Programming Language :: Python :: Implementation :: PyPy",
14
14
  ]
15
15
 
16
16
  [project.urls]
@@ -101,4 +101,17 @@ mod tests {
101
101
  "{csv}",
102
102
  );
103
103
  }
104
+
105
+ #[test]
106
+ fn tabs() {
107
+ let (csv, headers) = super::parse(include_str!("../tests/tabs.gef")).unwrap();
108
+
109
+ assert!(
110
+ headers.contains_key("COMPANYID"),
111
+ "{:?}",
112
+ headers.into_keys().collect::<Vec<_>>()
113
+ );
114
+
115
+ assert!(csv.trim().starts_with("0.50 2.00 0.50"), "{csv}",);
116
+ }
104
117
  }
@@ -0,0 +1,30 @@
1
+ #GEFID = 1, 1, 0
2
+ #COLUMN = 3
3
+ #COLUMNINFO = 1, m, Penetration length, 1
4
+ #COLUMNINFO = 2, MPa, Conusweerstand qc, 2
5
+ #COLUMNINFO = 3, m, corrected depth, 11
6
+ #COMPANYID = DUMMY, 00000000, 31
7
+ #DATAFORMAT = ASCII
8
+ #FILEOWNER = A. Nonymous
9
+ #LASTSCAN = 16
10
+ #REPORTCODE = GEF-CPT-Report, 1,1,1,-
11
+ #TESTID = FUGBEN1
12
+ #XYID = 31000, 0.0, 0.0, 1.0, 1.0
13
+ #ZID = 31000, 0.0, 0.1
14
+ #EOH =
15
+ 0.50 2.00 0.50
16
+ 2.00 2.00 2.00
17
+ 2.01 4.00 2.01
18
+ 6.00 4.00 6.00
19
+ 6.01 15.00 6.01
20
+ 14.00 15.00 14.00
21
+ 14.01 1.00 14.01
22
+ 16.00 1.00 16.00
23
+ 16.01 1.00 16.01
24
+ 17.00 1.00 17.00
25
+ 17.01 35.00 17.01
26
+ 20.00 35.00 20.00
27
+ 20.01 35.00 20.01
28
+ 23.99 35.00 23.99
29
+ 24.00 35.00 24.00
30
+ 30.00 35.00 30.00
@@ -1,3 +0,0 @@
1
- {
2
- "extends": ["config:recommended", "group:allNonMajor"]
3
- }
@@ -1,91 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- ## [0.2.1] - 2025-07-22
6
-
7
- ### Bug Fixes
8
-
9
- #### Header
10
-
11
- - Allow empty header values
12
-
13
-
14
- ### Documentation
15
-
16
- #### Readme
17
-
18
- - Don't link to specific version in PyPi badge
19
-
20
-
21
- ### Miscellaneous Tasks
22
-
23
- #### Ci
24
-
25
- - Move from dependabot to renovate
26
-
27
-
28
- ### Testing
29
-
30
- #### Bench
31
-
32
- - Add benchmarks
33
-
34
-
35
- ## [0.2.0] - 2025-03-10
36
-
37
- ### Bug Fixes
38
-
39
- #### Ci
40
-
41
- - Manually install Rust pipeline in CI
42
-
43
- #### Deps
44
-
45
- - Update nom to 8
46
-
47
-
48
- ### Refactor
49
-
50
- #### Deps
51
-
52
- - Migrate nom to winnow 0.3
53
-
54
- #### Parsing
55
-
56
- - [**breaking**] Improve parsing of headers and add better error reporting
57
-
58
-
59
- ## [0.1.1] - 2025-03-10
60
-
61
- ### Bug Fixes
62
-
63
- #### Ci
64
-
65
- - Fix publishing CI
66
-
67
-
68
- ### Documentation
69
-
70
-
71
- ### Miscellaneous Tasks
72
-
73
- #### Ci
74
-
75
- - Only run release CI on tags
76
-
77
-
78
- ## [0.1.0] - 2023-02-22
79
-
80
- ### Bug Fixes
81
-
82
- #### Ci
83
-
84
- - Copy wheel generation from @messense
85
- - Require minimum Python version of 3.8
86
-
87
-
88
- ### Refactor
89
-
90
-
91
- <!-- CEMS BV. -->
@@ -1,485 +0,0 @@
1
- # This file is automatically @generated by Cargo.
2
- # It is not intended for manual editing.
3
- version = 4
4
-
5
- [[package]]
6
- name = "anstyle"
7
- version = "1.0.11"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
10
-
11
- [[package]]
12
- name = "autocfg"
13
- version = "1.5.0"
14
- source = "registry+https://github.com/rust-lang/crates.io-index"
15
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
16
-
17
- [[package]]
18
- name = "bitflags"
19
- version = "2.9.1"
20
- source = "registry+https://github.com/rust-lang/crates.io-index"
21
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
22
-
23
- [[package]]
24
- name = "cfg-if"
25
- version = "1.0.1"
26
- source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
28
-
29
- [[package]]
30
- name = "clap"
31
- version = "4.5.41"
32
- source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
34
- dependencies = [
35
- "clap_builder",
36
- ]
37
-
38
- [[package]]
39
- name = "clap_builder"
40
- version = "4.5.41"
41
- source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
43
- dependencies = [
44
- "anstyle",
45
- "clap_lex",
46
- "terminal_size",
47
- ]
48
-
49
- [[package]]
50
- name = "clap_lex"
51
- version = "0.7.5"
52
- source = "registry+https://github.com/rust-lang/crates.io-index"
53
- checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
54
-
55
- [[package]]
56
- name = "condtype"
57
- version = "1.3.0"
58
- source = "registry+https://github.com/rust-lang/crates.io-index"
59
- checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
60
-
61
- [[package]]
62
- name = "divan"
63
- version = "0.1.21"
64
- source = "registry+https://github.com/rust-lang/crates.io-index"
65
- checksum = "a405457ec78b8fe08b0e32b4a3570ab5dff6dd16eb9e76a5ee0a9d9cbd898933"
66
- dependencies = [
67
- "cfg-if",
68
- "clap",
69
- "condtype",
70
- "divan-macros",
71
- "libc",
72
- "regex-lite",
73
- ]
74
-
75
- [[package]]
76
- name = "divan-macros"
77
- version = "0.1.21"
78
- source = "registry+https://github.com/rust-lang/crates.io-index"
79
- checksum = "9556bc800956545d6420a640173e5ba7dfa82f38d3ea5a167eb555bc69ac3323"
80
- dependencies = [
81
- "proc-macro2",
82
- "quote",
83
- "syn",
84
- ]
85
-
86
- [[package]]
87
- name = "either"
88
- version = "1.15.0"
89
- source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
91
-
92
- [[package]]
93
- name = "errno"
94
- version = "0.3.13"
95
- source = "registry+https://github.com/rust-lang/crates.io-index"
96
- checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
97
- dependencies = [
98
- "libc",
99
- "windows-sys 0.60.2",
100
- ]
101
-
102
- [[package]]
103
- name = "gef-file-to-map"
104
- version = "0.2.1"
105
- dependencies = [
106
- "divan",
107
- "itertools",
108
- "pyo3",
109
- "thiserror",
110
- "winnow",
111
- ]
112
-
113
- [[package]]
114
- name = "heck"
115
- version = "0.5.0"
116
- source = "registry+https://github.com/rust-lang/crates.io-index"
117
- checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
118
-
119
- [[package]]
120
- name = "indoc"
121
- version = "2.0.6"
122
- source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
124
-
125
- [[package]]
126
- name = "itertools"
127
- version = "0.14.0"
128
- source = "registry+https://github.com/rust-lang/crates.io-index"
129
- checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
130
- dependencies = [
131
- "either",
132
- ]
133
-
134
- [[package]]
135
- name = "libc"
136
- version = "0.2.174"
137
- source = "registry+https://github.com/rust-lang/crates.io-index"
138
- checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
139
-
140
- [[package]]
141
- name = "linux-raw-sys"
142
- version = "0.9.4"
143
- source = "registry+https://github.com/rust-lang/crates.io-index"
144
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
145
-
146
- [[package]]
147
- name = "memchr"
148
- version = "2.7.5"
149
- source = "registry+https://github.com/rust-lang/crates.io-index"
150
- checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
151
-
152
- [[package]]
153
- name = "memoffset"
154
- version = "0.9.1"
155
- source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
157
- dependencies = [
158
- "autocfg",
159
- ]
160
-
161
- [[package]]
162
- name = "once_cell"
163
- version = "1.21.3"
164
- source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
166
-
167
- [[package]]
168
- name = "portable-atomic"
169
- version = "1.11.1"
170
- source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
172
-
173
- [[package]]
174
- name = "proc-macro2"
175
- version = "1.0.95"
176
- source = "registry+https://github.com/rust-lang/crates.io-index"
177
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
178
- dependencies = [
179
- "unicode-ident",
180
- ]
181
-
182
- [[package]]
183
- name = "pyo3"
184
- version = "0.24.2"
185
- source = "registry+https://github.com/rust-lang/crates.io-index"
186
- checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
187
- dependencies = [
188
- "cfg-if",
189
- "indoc",
190
- "libc",
191
- "memoffset",
192
- "once_cell",
193
- "portable-atomic",
194
- "pyo3-build-config",
195
- "pyo3-ffi",
196
- "pyo3-macros",
197
- "unindent",
198
- ]
199
-
200
- [[package]]
201
- name = "pyo3-build-config"
202
- version = "0.24.2"
203
- source = "registry+https://github.com/rust-lang/crates.io-index"
204
- checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
205
- dependencies = [
206
- "once_cell",
207
- "target-lexicon",
208
- ]
209
-
210
- [[package]]
211
- name = "pyo3-ffi"
212
- version = "0.24.2"
213
- source = "registry+https://github.com/rust-lang/crates.io-index"
214
- checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
215
- dependencies = [
216
- "libc",
217
- "pyo3-build-config",
218
- ]
219
-
220
- [[package]]
221
- name = "pyo3-macros"
222
- version = "0.24.2"
223
- source = "registry+https://github.com/rust-lang/crates.io-index"
224
- checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
225
- dependencies = [
226
- "proc-macro2",
227
- "pyo3-macros-backend",
228
- "quote",
229
- "syn",
230
- ]
231
-
232
- [[package]]
233
- name = "pyo3-macros-backend"
234
- version = "0.24.2"
235
- source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
237
- dependencies = [
238
- "heck",
239
- "proc-macro2",
240
- "pyo3-build-config",
241
- "quote",
242
- "syn",
243
- ]
244
-
245
- [[package]]
246
- name = "quote"
247
- version = "1.0.40"
248
- source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
250
- dependencies = [
251
- "proc-macro2",
252
- ]
253
-
254
- [[package]]
255
- name = "regex-lite"
256
- version = "0.1.6"
257
- source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
259
-
260
- [[package]]
261
- name = "rustix"
262
- version = "1.0.8"
263
- source = "registry+https://github.com/rust-lang/crates.io-index"
264
- checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
265
- dependencies = [
266
- "bitflags",
267
- "errno",
268
- "libc",
269
- "linux-raw-sys",
270
- "windows-sys 0.60.2",
271
- ]
272
-
273
- [[package]]
274
- name = "syn"
275
- version = "2.0.104"
276
- source = "registry+https://github.com/rust-lang/crates.io-index"
277
- checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
278
- dependencies = [
279
- "proc-macro2",
280
- "quote",
281
- "unicode-ident",
282
- ]
283
-
284
- [[package]]
285
- name = "target-lexicon"
286
- version = "0.13.2"
287
- source = "registry+https://github.com/rust-lang/crates.io-index"
288
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
289
-
290
- [[package]]
291
- name = "terminal_size"
292
- version = "0.4.2"
293
- source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
295
- dependencies = [
296
- "rustix",
297
- "windows-sys 0.59.0",
298
- ]
299
-
300
- [[package]]
301
- name = "thiserror"
302
- version = "2.0.12"
303
- source = "registry+https://github.com/rust-lang/crates.io-index"
304
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
305
- dependencies = [
306
- "thiserror-impl",
307
- ]
308
-
309
- [[package]]
310
- name = "thiserror-impl"
311
- version = "2.0.12"
312
- source = "registry+https://github.com/rust-lang/crates.io-index"
313
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
314
- dependencies = [
315
- "proc-macro2",
316
- "quote",
317
- "syn",
318
- ]
319
-
320
- [[package]]
321
- name = "unicode-ident"
322
- version = "1.0.18"
323
- source = "registry+https://github.com/rust-lang/crates.io-index"
324
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
325
-
326
- [[package]]
327
- name = "unindent"
328
- version = "0.2.4"
329
- source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
331
-
332
- [[package]]
333
- name = "windows-sys"
334
- version = "0.59.0"
335
- source = "registry+https://github.com/rust-lang/crates.io-index"
336
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
337
- dependencies = [
338
- "windows-targets 0.52.6",
339
- ]
340
-
341
- [[package]]
342
- name = "windows-sys"
343
- version = "0.60.2"
344
- source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
346
- dependencies = [
347
- "windows-targets 0.53.2",
348
- ]
349
-
350
- [[package]]
351
- name = "windows-targets"
352
- version = "0.52.6"
353
- source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
355
- dependencies = [
356
- "windows_aarch64_gnullvm 0.52.6",
357
- "windows_aarch64_msvc 0.52.6",
358
- "windows_i686_gnu 0.52.6",
359
- "windows_i686_gnullvm 0.52.6",
360
- "windows_i686_msvc 0.52.6",
361
- "windows_x86_64_gnu 0.52.6",
362
- "windows_x86_64_gnullvm 0.52.6",
363
- "windows_x86_64_msvc 0.52.6",
364
- ]
365
-
366
- [[package]]
367
- name = "windows-targets"
368
- version = "0.53.2"
369
- source = "registry+https://github.com/rust-lang/crates.io-index"
370
- checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
371
- dependencies = [
372
- "windows_aarch64_gnullvm 0.53.0",
373
- "windows_aarch64_msvc 0.53.0",
374
- "windows_i686_gnu 0.53.0",
375
- "windows_i686_gnullvm 0.53.0",
376
- "windows_i686_msvc 0.53.0",
377
- "windows_x86_64_gnu 0.53.0",
378
- "windows_x86_64_gnullvm 0.53.0",
379
- "windows_x86_64_msvc 0.53.0",
380
- ]
381
-
382
- [[package]]
383
- name = "windows_aarch64_gnullvm"
384
- version = "0.52.6"
385
- source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
387
-
388
- [[package]]
389
- name = "windows_aarch64_gnullvm"
390
- version = "0.53.0"
391
- source = "registry+https://github.com/rust-lang/crates.io-index"
392
- checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
393
-
394
- [[package]]
395
- name = "windows_aarch64_msvc"
396
- version = "0.52.6"
397
- source = "registry+https://github.com/rust-lang/crates.io-index"
398
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
399
-
400
- [[package]]
401
- name = "windows_aarch64_msvc"
402
- version = "0.53.0"
403
- source = "registry+https://github.com/rust-lang/crates.io-index"
404
- checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
405
-
406
- [[package]]
407
- name = "windows_i686_gnu"
408
- version = "0.52.6"
409
- source = "registry+https://github.com/rust-lang/crates.io-index"
410
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
411
-
412
- [[package]]
413
- name = "windows_i686_gnu"
414
- version = "0.53.0"
415
- source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
417
-
418
- [[package]]
419
- name = "windows_i686_gnullvm"
420
- version = "0.52.6"
421
- source = "registry+https://github.com/rust-lang/crates.io-index"
422
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
423
-
424
- [[package]]
425
- name = "windows_i686_gnullvm"
426
- version = "0.53.0"
427
- source = "registry+https://github.com/rust-lang/crates.io-index"
428
- checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
429
-
430
- [[package]]
431
- name = "windows_i686_msvc"
432
- version = "0.52.6"
433
- source = "registry+https://github.com/rust-lang/crates.io-index"
434
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
435
-
436
- [[package]]
437
- name = "windows_i686_msvc"
438
- version = "0.53.0"
439
- source = "registry+https://github.com/rust-lang/crates.io-index"
440
- checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
441
-
442
- [[package]]
443
- name = "windows_x86_64_gnu"
444
- version = "0.52.6"
445
- source = "registry+https://github.com/rust-lang/crates.io-index"
446
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
447
-
448
- [[package]]
449
- name = "windows_x86_64_gnu"
450
- version = "0.53.0"
451
- source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
453
-
454
- [[package]]
455
- name = "windows_x86_64_gnullvm"
456
- version = "0.52.6"
457
- source = "registry+https://github.com/rust-lang/crates.io-index"
458
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
459
-
460
- [[package]]
461
- name = "windows_x86_64_gnullvm"
462
- version = "0.53.0"
463
- source = "registry+https://github.com/rust-lang/crates.io-index"
464
- checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
465
-
466
- [[package]]
467
- name = "windows_x86_64_msvc"
468
- version = "0.52.6"
469
- source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
471
-
472
- [[package]]
473
- name = "windows_x86_64_msvc"
474
- version = "0.53.0"
475
- source = "registry+https://github.com/rust-lang/crates.io-index"
476
- checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
477
-
478
- [[package]]
479
- name = "winnow"
480
- version = "0.7.12"
481
- source = "registry+https://github.com/rust-lang/crates.io-index"
482
- checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
483
- dependencies = [
484
- "memchr",
485
- ]
File without changes