gef-file-to-map 0.2.1__tar.gz → 1.0.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.
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/.github/workflows/release_pypi.yaml +8 -8
- gef_file_to_map-1.0.0/.ignore +17 -0
- gef_file_to_map-1.0.0/CHANGELOG.md +65 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/Cargo.lock +102 -152
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/Cargo.toml +5 -4
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/PKG-INFO +2 -2
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/pyproject.toml +5 -5
- gef_file_to_map-0.2.1/CHANGELOG.md +0 -91
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/.github/renovate.json +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/.gitignore +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/LICENSE +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/README.md +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/benches/test_gef.rs +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/src/error.rs +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/src/header.rs +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/src/lib.rs +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/tests/big-file.gef +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/tests/header.gef +0 -0
- {gef_file_to_map-0.2.1 → gef_file_to_map-1.0.0}/tests/test.gef +0 -0
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
linux:
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v5
|
|
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@
|
|
27
|
+
uses: actions/upload-artifact@v5
|
|
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@
|
|
35
|
+
- uses: actions/checkout@v5
|
|
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@
|
|
46
|
+
uses: actions/upload-artifact@v5
|
|
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@
|
|
54
|
+
- uses: actions/checkout@v5
|
|
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@
|
|
65
|
+
uses: actions/upload-artifact@v5
|
|
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@
|
|
86
|
+
- uses: actions/download-artifact@v6
|
|
87
87
|
|
|
88
88
|
- name: Generate artifact attestation
|
|
89
|
-
uses: actions/attest-build-provenance@
|
|
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,65 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [1.0.0] - 2025-10-31
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- *Deps*:
|
|
10
|
+
- Update rust crates pyo3, winnow and thiserror
|
|
11
|
+
- Update rust crate pyo3 to 0.27.0
|
|
12
|
+
- Update rust crate pyo3 to 0.26.0
|
|
13
|
+
- Update rust crate pyo3 to 0.25.0
|
|
14
|
+
- *Python*: [**BREAKING**]Bump minimum supported Python version to 3.11
|
|
15
|
+
|
|
16
|
+
## [0.2.1] - 2025-07-22
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
- *Header*: Allow empty header values
|
|
20
|
+
|
|
21
|
+
### Documentation
|
|
22
|
+
- *Readme*: Don't link to specific version in PyPi badge
|
|
23
|
+
|
|
24
|
+
### Miscellaneous Tasks
|
|
25
|
+
- *Ci*: Move from dependabot to renovate
|
|
26
|
+
|
|
27
|
+
### Testing
|
|
28
|
+
- *Bench*: Add benchmarks
|
|
29
|
+
|
|
30
|
+
## [0.2.0] - 2025-03-10
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
- *Ci*: Manually install Rust pipeline in CI
|
|
34
|
+
- *Deps*: Update nom to 8
|
|
35
|
+
|
|
36
|
+
### Refactor
|
|
37
|
+
- *Deps*: Migrate nom to winnow 0.3
|
|
38
|
+
- *Parsing*: [**BREAKING**]Improve parsing of headers and add better error reporting
|
|
39
|
+
|
|
40
|
+
## [0.1.1] - 2025-03-10
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
- *Ci*: Fix publishing CI
|
|
44
|
+
|
|
45
|
+
### Documentation
|
|
46
|
+
- Fix error in example
|
|
47
|
+
- Add pypi version badge
|
|
48
|
+
|
|
49
|
+
### Miscellaneous Tasks
|
|
50
|
+
- *Ci*: Only run release CI on tags
|
|
51
|
+
- Update dependencies
|
|
52
|
+
- Update dependencies
|
|
53
|
+
|
|
54
|
+
## [0.1.0] - 2023-02-22
|
|
55
|
+
|
|
56
|
+
### Bug Fixes
|
|
57
|
+
|
|
58
|
+
- *Ci*:
|
|
59
|
+
- Copy wheel generation from @messense
|
|
60
|
+
- Require minimum Python version of 3.8
|
|
61
|
+
|
|
62
|
+
### Refactor
|
|
63
|
+
- Move from pygef repo
|
|
64
|
+
|
|
65
|
+
<!-- CEMS BV. -->
|
|
@@ -4,9 +4,9 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "anstyle"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.13"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "autocfg"
|
|
@@ -16,30 +16,30 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
16
16
|
|
|
17
17
|
[[package]]
|
|
18
18
|
name = "bitflags"
|
|
19
|
-
version = "2.
|
|
19
|
+
version = "2.10.0"
|
|
20
20
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
-
checksum = "
|
|
21
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
22
22
|
|
|
23
23
|
[[package]]
|
|
24
24
|
name = "cfg-if"
|
|
25
|
-
version = "1.0.
|
|
25
|
+
version = "1.0.4"
|
|
26
26
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
-
checksum = "
|
|
27
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
28
28
|
|
|
29
29
|
[[package]]
|
|
30
30
|
name = "clap"
|
|
31
|
-
version = "4.5.
|
|
31
|
+
version = "4.5.51"
|
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "
|
|
33
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
34
34
|
dependencies = [
|
|
35
35
|
"clap_builder",
|
|
36
36
|
]
|
|
37
37
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "clap_builder"
|
|
40
|
-
version = "4.5.
|
|
40
|
+
version = "4.5.51"
|
|
41
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
-
checksum = "
|
|
42
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
43
43
|
dependencies = [
|
|
44
44
|
"anstyle",
|
|
45
45
|
"clap_lex",
|
|
@@ -48,9 +48,9 @@ dependencies = [
|
|
|
48
48
|
|
|
49
49
|
[[package]]
|
|
50
50
|
name = "clap_lex"
|
|
51
|
-
version = "0.7.
|
|
51
|
+
version = "0.7.6"
|
|
52
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
-
checksum = "
|
|
53
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
54
54
|
|
|
55
55
|
[[package]]
|
|
56
56
|
name = "condtype"
|
|
@@ -91,17 +91,17 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
|
91
91
|
|
|
92
92
|
[[package]]
|
|
93
93
|
name = "errno"
|
|
94
|
-
version = "0.3.
|
|
94
|
+
version = "0.3.14"
|
|
95
95
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
-
checksum = "
|
|
96
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
97
97
|
dependencies = [
|
|
98
98
|
"libc",
|
|
99
|
-
"windows-sys 0.
|
|
99
|
+
"windows-sys 0.61.2",
|
|
100
100
|
]
|
|
101
101
|
|
|
102
102
|
[[package]]
|
|
103
103
|
name = "gef-file-to-map"
|
|
104
|
-
version = "0.
|
|
104
|
+
version = "1.0.0"
|
|
105
105
|
dependencies = [
|
|
106
106
|
"divan",
|
|
107
107
|
"itertools",
|
|
@@ -118,9 +118,12 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
118
118
|
|
|
119
119
|
[[package]]
|
|
120
120
|
name = "indoc"
|
|
121
|
-
version = "2.0.
|
|
121
|
+
version = "2.0.7"
|
|
122
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
-
checksum = "
|
|
123
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"rustversion",
|
|
126
|
+
]
|
|
124
127
|
|
|
125
128
|
[[package]]
|
|
126
129
|
name = "itertools"
|
|
@@ -133,21 +136,21 @@ dependencies = [
|
|
|
133
136
|
|
|
134
137
|
[[package]]
|
|
135
138
|
name = "libc"
|
|
136
|
-
version = "0.2.
|
|
139
|
+
version = "0.2.177"
|
|
137
140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
-
checksum = "
|
|
141
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
139
142
|
|
|
140
143
|
[[package]]
|
|
141
144
|
name = "linux-raw-sys"
|
|
142
|
-
version = "0.
|
|
145
|
+
version = "0.11.0"
|
|
143
146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
-
checksum = "
|
|
147
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
145
148
|
|
|
146
149
|
[[package]]
|
|
147
150
|
name = "memchr"
|
|
148
|
-
version = "2.7.
|
|
151
|
+
version = "2.7.6"
|
|
149
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
-
checksum = "
|
|
153
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
151
154
|
|
|
152
155
|
[[package]]
|
|
153
156
|
name = "memoffset"
|
|
@@ -172,20 +175,19 @@ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
|
172
175
|
|
|
173
176
|
[[package]]
|
|
174
177
|
name = "proc-macro2"
|
|
175
|
-
version = "1.0.
|
|
178
|
+
version = "1.0.103"
|
|
176
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
-
checksum = "
|
|
180
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
178
181
|
dependencies = [
|
|
179
182
|
"unicode-ident",
|
|
180
183
|
]
|
|
181
184
|
|
|
182
185
|
[[package]]
|
|
183
186
|
name = "pyo3"
|
|
184
|
-
version = "0.
|
|
187
|
+
version = "0.27.1"
|
|
185
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
189
|
+
checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
|
|
187
190
|
dependencies = [
|
|
188
|
-
"cfg-if",
|
|
189
191
|
"indoc",
|
|
190
192
|
"libc",
|
|
191
193
|
"memoffset",
|
|
@@ -199,19 +201,18 @@ dependencies = [
|
|
|
199
201
|
|
|
200
202
|
[[package]]
|
|
201
203
|
name = "pyo3-build-config"
|
|
202
|
-
version = "0.
|
|
204
|
+
version = "0.27.1"
|
|
203
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
-
checksum = "
|
|
206
|
+
checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
|
|
205
207
|
dependencies = [
|
|
206
|
-
"once_cell",
|
|
207
208
|
"target-lexicon",
|
|
208
209
|
]
|
|
209
210
|
|
|
210
211
|
[[package]]
|
|
211
212
|
name = "pyo3-ffi"
|
|
212
|
-
version = "0.
|
|
213
|
+
version = "0.27.1"
|
|
213
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
-
checksum = "
|
|
215
|
+
checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
|
|
215
216
|
dependencies = [
|
|
216
217
|
"libc",
|
|
217
218
|
"pyo3-build-config",
|
|
@@ -219,9 +220,9 @@ dependencies = [
|
|
|
219
220
|
|
|
220
221
|
[[package]]
|
|
221
222
|
name = "pyo3-macros"
|
|
222
|
-
version = "0.
|
|
223
|
+
version = "0.27.1"
|
|
223
224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
-
checksum = "
|
|
225
|
+
checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
|
|
225
226
|
dependencies = [
|
|
226
227
|
"proc-macro2",
|
|
227
228
|
"pyo3-macros-backend",
|
|
@@ -231,9 +232,9 @@ dependencies = [
|
|
|
231
232
|
|
|
232
233
|
[[package]]
|
|
233
234
|
name = "pyo3-macros-backend"
|
|
234
|
-
version = "0.
|
|
235
|
+
version = "0.27.1"
|
|
235
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
-
checksum = "
|
|
237
|
+
checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
|
|
237
238
|
dependencies = [
|
|
238
239
|
"heck",
|
|
239
240
|
"proc-macro2",
|
|
@@ -244,37 +245,43 @@ dependencies = [
|
|
|
244
245
|
|
|
245
246
|
[[package]]
|
|
246
247
|
name = "quote"
|
|
247
|
-
version = "1.0.
|
|
248
|
+
version = "1.0.41"
|
|
248
249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
250
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
250
251
|
dependencies = [
|
|
251
252
|
"proc-macro2",
|
|
252
253
|
]
|
|
253
254
|
|
|
254
255
|
[[package]]
|
|
255
256
|
name = "regex-lite"
|
|
256
|
-
version = "0.1.
|
|
257
|
+
version = "0.1.8"
|
|
257
258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
-
checksum = "
|
|
259
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
259
260
|
|
|
260
261
|
[[package]]
|
|
261
262
|
name = "rustix"
|
|
262
|
-
version = "1.
|
|
263
|
+
version = "1.1.2"
|
|
263
264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
-
checksum = "
|
|
265
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
265
266
|
dependencies = [
|
|
266
267
|
"bitflags",
|
|
267
268
|
"errno",
|
|
268
269
|
"libc",
|
|
269
270
|
"linux-raw-sys",
|
|
270
|
-
"windows-sys 0.
|
|
271
|
+
"windows-sys 0.61.2",
|
|
271
272
|
]
|
|
272
273
|
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "rustversion"
|
|
276
|
+
version = "1.0.22"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
279
|
+
|
|
273
280
|
[[package]]
|
|
274
281
|
name = "syn"
|
|
275
|
-
version = "2.0.
|
|
282
|
+
version = "2.0.108"
|
|
276
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
-
checksum = "
|
|
284
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
278
285
|
dependencies = [
|
|
279
286
|
"proc-macro2",
|
|
280
287
|
"quote",
|
|
@@ -283,34 +290,34 @@ dependencies = [
|
|
|
283
290
|
|
|
284
291
|
[[package]]
|
|
285
292
|
name = "target-lexicon"
|
|
286
|
-
version = "0.13.
|
|
293
|
+
version = "0.13.3"
|
|
287
294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "
|
|
295
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
289
296
|
|
|
290
297
|
[[package]]
|
|
291
298
|
name = "terminal_size"
|
|
292
|
-
version = "0.4.
|
|
299
|
+
version = "0.4.3"
|
|
293
300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
301
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
295
302
|
dependencies = [
|
|
296
303
|
"rustix",
|
|
297
|
-
"windows-sys 0.
|
|
304
|
+
"windows-sys 0.60.2",
|
|
298
305
|
]
|
|
299
306
|
|
|
300
307
|
[[package]]
|
|
301
308
|
name = "thiserror"
|
|
302
|
-
version = "2.0.
|
|
309
|
+
version = "2.0.17"
|
|
303
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
-
checksum = "
|
|
311
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
305
312
|
dependencies = [
|
|
306
313
|
"thiserror-impl",
|
|
307
314
|
]
|
|
308
315
|
|
|
309
316
|
[[package]]
|
|
310
317
|
name = "thiserror-impl"
|
|
311
|
-
version = "2.0.
|
|
318
|
+
version = "2.0.17"
|
|
312
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "
|
|
320
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
314
321
|
dependencies = [
|
|
315
322
|
"proc-macro2",
|
|
316
323
|
"quote",
|
|
@@ -319,9 +326,9 @@ dependencies = [
|
|
|
319
326
|
|
|
320
327
|
[[package]]
|
|
321
328
|
name = "unicode-ident"
|
|
322
|
-
version = "1.0.
|
|
329
|
+
version = "1.0.22"
|
|
323
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
-
checksum = "
|
|
331
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
325
332
|
|
|
326
333
|
[[package]]
|
|
327
334
|
name = "unindent"
|
|
@@ -330,13 +337,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
330
337
|
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
331
338
|
|
|
332
339
|
[[package]]
|
|
333
|
-
name = "windows-
|
|
334
|
-
version = "0.
|
|
340
|
+
name = "windows-link"
|
|
341
|
+
version = "0.2.1"
|
|
335
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "
|
|
337
|
-
dependencies = [
|
|
338
|
-
"windows-targets 0.52.6",
|
|
339
|
-
]
|
|
343
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
340
344
|
|
|
341
345
|
[[package]]
|
|
342
346
|
name = "windows-sys"
|
|
@@ -344,142 +348,88 @@ version = "0.60.2"
|
|
|
344
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
349
|
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
346
350
|
dependencies = [
|
|
347
|
-
"windows-targets
|
|
351
|
+
"windows-targets",
|
|
348
352
|
]
|
|
349
353
|
|
|
350
354
|
[[package]]
|
|
351
|
-
name = "windows-
|
|
352
|
-
version = "0.
|
|
355
|
+
name = "windows-sys"
|
|
356
|
+
version = "0.61.2"
|
|
353
357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
358
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
355
359
|
dependencies = [
|
|
356
|
-
"
|
|
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",
|
|
360
|
+
"windows-link",
|
|
364
361
|
]
|
|
365
362
|
|
|
366
363
|
[[package]]
|
|
367
364
|
name = "windows-targets"
|
|
368
|
-
version = "0.53.
|
|
365
|
+
version = "0.53.5"
|
|
369
366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
-
checksum = "
|
|
367
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
371
368
|
dependencies = [
|
|
372
|
-
"
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
"
|
|
378
|
-
"
|
|
379
|
-
"
|
|
369
|
+
"windows-link",
|
|
370
|
+
"windows_aarch64_gnullvm",
|
|
371
|
+
"windows_aarch64_msvc",
|
|
372
|
+
"windows_i686_gnu",
|
|
373
|
+
"windows_i686_gnullvm",
|
|
374
|
+
"windows_i686_msvc",
|
|
375
|
+
"windows_x86_64_gnu",
|
|
376
|
+
"windows_x86_64_gnullvm",
|
|
377
|
+
"windows_x86_64_msvc",
|
|
380
378
|
]
|
|
381
379
|
|
|
382
380
|
[[package]]
|
|
383
381
|
name = "windows_aarch64_gnullvm"
|
|
384
|
-
version = "0.
|
|
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"
|
|
382
|
+
version = "0.53.1"
|
|
397
383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
-
checksum = "
|
|
384
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
399
385
|
|
|
400
386
|
[[package]]
|
|
401
387
|
name = "windows_aarch64_msvc"
|
|
402
|
-
version = "0.53.
|
|
388
|
+
version = "0.53.1"
|
|
403
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
-
checksum = "
|
|
390
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
405
391
|
|
|
406
392
|
[[package]]
|
|
407
393
|
name = "windows_i686_gnu"
|
|
408
|
-
version = "0.
|
|
394
|
+
version = "0.53.1"
|
|
409
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
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"
|
|
396
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
423
397
|
|
|
424
398
|
[[package]]
|
|
425
399
|
name = "windows_i686_gnullvm"
|
|
426
|
-
version = "0.53.
|
|
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"
|
|
400
|
+
version = "0.53.1"
|
|
433
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
-
checksum = "
|
|
402
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
435
403
|
|
|
436
404
|
[[package]]
|
|
437
405
|
name = "windows_i686_msvc"
|
|
438
|
-
version = "0.53.
|
|
406
|
+
version = "0.53.1"
|
|
439
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
-
checksum = "
|
|
408
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
441
409
|
|
|
442
410
|
[[package]]
|
|
443
411
|
name = "windows_x86_64_gnu"
|
|
444
|
-
version = "0.
|
|
412
|
+
version = "0.53.1"
|
|
445
413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
-
checksum = "
|
|
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"
|
|
414
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
459
415
|
|
|
460
416
|
[[package]]
|
|
461
417
|
name = "windows_x86_64_gnullvm"
|
|
462
|
-
version = "0.53.
|
|
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"
|
|
418
|
+
version = "0.53.1"
|
|
469
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
-
checksum = "
|
|
420
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
471
421
|
|
|
472
422
|
[[package]]
|
|
473
423
|
name = "windows_x86_64_msvc"
|
|
474
|
-
version = "0.53.
|
|
424
|
+
version = "0.53.1"
|
|
475
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "
|
|
426
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
477
427
|
|
|
478
428
|
[[package]]
|
|
479
429
|
name = "winnow"
|
|
480
|
-
version = "0.7.
|
|
430
|
+
version = "0.7.13"
|
|
481
431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "
|
|
432
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
483
433
|
dependencies = [
|
|
484
434
|
"memchr",
|
|
485
435
|
]
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "gef-file-to-map"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "1.0.0"
|
|
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.
|
|
10
|
-
thiserror = "2.0.
|
|
11
|
-
winnow = "0.7.
|
|
10
|
+
pyo3 = { version = "0.27.1", features = ["extension-module", "abi3-py37"] }
|
|
11
|
+
thiserror = "2.0.17"
|
|
12
|
+
winnow = "0.7.13"
|
|
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.
|
|
3
|
+
Version: 1.0.0
|
|
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.
|
|
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.
|
|
3
|
+
version = "1.0.0"
|
|
4
4
|
description = "Utility library for parsing .gef files"
|
|
5
|
-
requires-python = ">=3.
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
"Programming Language :: Rust",
|
|
12
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
13
|
+
"Programming Language :: Python :: Implementation :: PyPy",
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
[project.urls]
|
|
@@ -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. -->
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|