mapfile-parser 2.8.0__tar.gz → 2.9.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.
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/CHANGELOG.md +41 -0
- mapfile_parser-2.9.0/Cargo.lock +634 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/Cargo.toml +19 -4
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/PKG-INFO +14 -10
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/README.md +12 -8
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/pyproject.toml +2 -2
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/__init__.py +2 -1
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/__main__.py +3 -1
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/__init__.py +1 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/bss_check.py +24 -11
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/first_diff.py +33 -14
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/jsonify.py +14 -7
- mapfile_parser-2.9.0/src/mapfile_parser/frontends/objdiff_report.py +275 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/pj64_syms.py +14 -7
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/progress.py +26 -11
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/sym_info.py +13 -7
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/symbol_sizes_csv.py +14 -7
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/frontends/upload_frogress.py +41 -21
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/mapfile.py +20 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/mapfile_parser.pyi +10 -1
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/mapfile_rs.py +1 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/lib.rs +6 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/mapfile.rs +74 -7
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/parser.rs +212 -5
- mapfile_parser-2.9.0/src/rs/report.rs +466 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/section.rs +1 -1
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/segment.rs +1 -1
- mapfile_parser-2.8.0/Cargo.lock +0 -244
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/.gitattributes +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/.gitignore +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/LICENSE +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/progress_stats.py +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/progress_stats_rs.py +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/mapfile_parser/utils.py +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/found_symbol_info.rs +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/maps_comparison_info.rs +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/progress_stats.rs +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/symbol.rs +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/symbol_comparison_info.rs +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/symbol_decomp_state.rs +0 -0
- {mapfile_parser-2.8.0 → mapfile_parser-2.9.0}/src/rs/utils.rs +0 -0
|
@@ -7,6 +7,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.9.0] - 2025-05-25
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Support emitting progress reports using
|
|
15
|
+
[`objdiff`](https://github.com/encounter/objdiff)'s format.
|
|
16
|
+
- Relies mainly on `.NON_MATCHING`-suffixed marker symbols being present on
|
|
17
|
+
the mapfile for each non-matched symbol.
|
|
18
|
+
- Rust:
|
|
19
|
+
- Disabled by default, it is gated by the `objdiff_report` feature.
|
|
20
|
+
- Use `MapFile::get_objdiff_report()` to generate the report.
|
|
21
|
+
- It is recommended to mix with the `serde` feature to make serialization of
|
|
22
|
+
the report easier.
|
|
23
|
+
- Python:
|
|
24
|
+
- Use `MapFile::writeObjdiffReportToFile()` to write an objdiff report as a
|
|
25
|
+
`json` file.
|
|
26
|
+
- Add `objdiff_report` as a new CLI utility to the Python library.
|
|
27
|
+
- Generate a simple `objdiff` progress report from your terminal!
|
|
28
|
+
- This utility supports the `decomp.yaml` format. This format is the preferred
|
|
29
|
+
way of invoking the tool, given the long list of arguments needed for the
|
|
30
|
+
tool to properly work.
|
|
31
|
+
- Add support for Metrowerks ld mapfiles.
|
|
32
|
+
- Existing catch-all functions will try to guess if the given mapfile
|
|
33
|
+
correspond to this kind of map by default.
|
|
34
|
+
- New functions:
|
|
35
|
+
- `MapFile::new_from_mw_map_str()` (Rust) and `MapFile::newFromMwMapStr()`
|
|
36
|
+
(Python): Parses specifically a Metrowerks ld mapfile without guessing.
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- Update `decomp_settings` to version 0.0.9.
|
|
41
|
+
- Bump MSRV from `1.65.0` to `1.74.0`.
|
|
42
|
+
|
|
43
|
+
## [2.8.1] - 2025-05-22
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- Fix broken CLI utilities when a decomp.yaml file is not detected.
|
|
48
|
+
|
|
10
49
|
## [2.8.0] - 2025-05-20
|
|
11
50
|
|
|
12
51
|
### Added
|
|
@@ -529,6 +568,8 @@ Full changes: <https://github.com/Decompollaborate/mapfile_parser/compare/702a73
|
|
|
529
568
|
- Initial release
|
|
530
569
|
|
|
531
570
|
[unreleased]: https://github.com/Decompollaborate/mapfile_parser/compare/master...develop
|
|
571
|
+
[2.9.0]: https://github.com/Decompollaborate/mapfile_parser/compare/2.8.1...2.9.0
|
|
572
|
+
[2.8.1]: https://github.com/Decompollaborate/mapfile_parser/compare/2.8.0...2.8.1
|
|
532
573
|
[2.8.0]: https://github.com/Decompollaborate/mapfile_parser/compare/2.7.5...2.8.0
|
|
533
574
|
[2.7.5]: https://github.com/Decompollaborate/mapfile_parser/compare/2.7.4...2.7.5
|
|
534
575
|
[2.7.4]: https://github.com/Decompollaborate/mapfile_parser/compare/2.7.3...2.7.4
|
|
@@ -0,0 +1,634 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.3"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.98"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.3.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "base64"
|
|
28
|
+
version = "0.21.7"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bitflags"
|
|
34
|
+
version = "2.9.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bytes"
|
|
40
|
+
version = "1.10.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cfg-if"
|
|
46
|
+
version = "1.0.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "either"
|
|
52
|
+
version = "1.15.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "equivalent"
|
|
58
|
+
version = "1.0.2"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "errno"
|
|
64
|
+
version = "0.3.11"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"libc",
|
|
69
|
+
"windows-sys",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "fastrand"
|
|
74
|
+
version = "2.3.0"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "fixedbitset"
|
|
80
|
+
version = "0.5.7"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "getrandom"
|
|
86
|
+
version = "0.3.3"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"cfg-if",
|
|
91
|
+
"libc",
|
|
92
|
+
"r-efi",
|
|
93
|
+
"wasi",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "hashbrown"
|
|
98
|
+
version = "0.15.3"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "heck"
|
|
104
|
+
version = "0.5.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "indexmap"
|
|
110
|
+
version = "2.9.0"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"equivalent",
|
|
115
|
+
"hashbrown",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "indoc"
|
|
120
|
+
version = "2.0.5"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "itertools"
|
|
126
|
+
version = "0.13.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"either",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "itertools"
|
|
135
|
+
version = "0.14.0"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"either",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "itoa"
|
|
144
|
+
version = "1.0.15"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "lazy_static"
|
|
150
|
+
version = "1.5.0"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "libc"
|
|
156
|
+
version = "0.2.172"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "linux-raw-sys"
|
|
162
|
+
version = "0.9.4"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "log"
|
|
168
|
+
version = "0.4.27"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "mapfile_parser"
|
|
174
|
+
version = "2.9.0"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"lazy_static",
|
|
177
|
+
"objdiff-core",
|
|
178
|
+
"pyo3",
|
|
179
|
+
"regex",
|
|
180
|
+
"serde",
|
|
181
|
+
"serde_json",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "memchr"
|
|
186
|
+
version = "2.7.4"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "memoffset"
|
|
192
|
+
version = "0.9.1"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"autocfg",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "multimap"
|
|
201
|
+
version = "0.10.1"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "objdiff-core"
|
|
207
|
+
version = "2.5.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "b114e70a6ede280511c1690609afbe802f84f7aaf27c71486c0510df07e647b8"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"anyhow",
|
|
212
|
+
"object",
|
|
213
|
+
"pbjson",
|
|
214
|
+
"pbjson-build",
|
|
215
|
+
"prost",
|
|
216
|
+
"prost-build",
|
|
217
|
+
"serde",
|
|
218
|
+
"serde_json",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "object"
|
|
223
|
+
version = "0.36.7"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"memchr",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "once_cell"
|
|
232
|
+
version = "1.19.0"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "pbjson"
|
|
238
|
+
version = "0.7.0"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "c7e6349fa080353f4a597daffd05cb81572a9c031a6d4fff7e504947496fcc68"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"base64",
|
|
243
|
+
"serde",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "pbjson-build"
|
|
248
|
+
version = "0.7.0"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "6eea3058763d6e656105d1403cb04e0a41b7bbac6362d413e7c33be0c32279c9"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"heck",
|
|
253
|
+
"itertools 0.13.0",
|
|
254
|
+
"prost",
|
|
255
|
+
"prost-types",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "petgraph"
|
|
260
|
+
version = "0.7.1"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"fixedbitset",
|
|
265
|
+
"indexmap",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "portable-atomic"
|
|
270
|
+
version = "1.7.0"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "prettyplease"
|
|
276
|
+
version = "0.2.32"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"proc-macro2",
|
|
281
|
+
"syn",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "proc-macro2"
|
|
286
|
+
version = "1.0.95"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"unicode-ident",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "prost"
|
|
295
|
+
version = "0.13.5"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"bytes",
|
|
300
|
+
"prost-derive",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "prost-build"
|
|
305
|
+
version = "0.13.5"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"heck",
|
|
310
|
+
"itertools 0.14.0",
|
|
311
|
+
"log",
|
|
312
|
+
"multimap",
|
|
313
|
+
"once_cell",
|
|
314
|
+
"petgraph",
|
|
315
|
+
"prettyplease",
|
|
316
|
+
"prost",
|
|
317
|
+
"prost-types",
|
|
318
|
+
"regex",
|
|
319
|
+
"syn",
|
|
320
|
+
"tempfile",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "prost-derive"
|
|
325
|
+
version = "0.13.5"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"anyhow",
|
|
330
|
+
"itertools 0.14.0",
|
|
331
|
+
"proc-macro2",
|
|
332
|
+
"quote",
|
|
333
|
+
"syn",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "prost-types"
|
|
338
|
+
version = "0.13.5"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"prost",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "pyo3"
|
|
347
|
+
version = "0.23.5"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"cfg-if",
|
|
352
|
+
"indoc",
|
|
353
|
+
"libc",
|
|
354
|
+
"memoffset",
|
|
355
|
+
"once_cell",
|
|
356
|
+
"portable-atomic",
|
|
357
|
+
"pyo3-build-config",
|
|
358
|
+
"pyo3-ffi",
|
|
359
|
+
"pyo3-macros",
|
|
360
|
+
"unindent",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "pyo3-build-config"
|
|
365
|
+
version = "0.23.5"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"once_cell",
|
|
370
|
+
"target-lexicon",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "pyo3-ffi"
|
|
375
|
+
version = "0.23.5"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"libc",
|
|
380
|
+
"pyo3-build-config",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "pyo3-macros"
|
|
385
|
+
version = "0.23.5"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"proc-macro2",
|
|
390
|
+
"pyo3-macros-backend",
|
|
391
|
+
"quote",
|
|
392
|
+
"syn",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "pyo3-macros-backend"
|
|
397
|
+
version = "0.23.5"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"heck",
|
|
402
|
+
"proc-macro2",
|
|
403
|
+
"pyo3-build-config",
|
|
404
|
+
"quote",
|
|
405
|
+
"syn",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "quote"
|
|
410
|
+
version = "1.0.36"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"proc-macro2",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "r-efi"
|
|
419
|
+
version = "5.2.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "regex"
|
|
425
|
+
version = "1.10.6"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"aho-corasick",
|
|
430
|
+
"memchr",
|
|
431
|
+
"regex-automata",
|
|
432
|
+
"regex-syntax",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "regex-automata"
|
|
437
|
+
version = "0.4.7"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"aho-corasick",
|
|
442
|
+
"memchr",
|
|
443
|
+
"regex-syntax",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "regex-syntax"
|
|
448
|
+
version = "0.8.4"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "rustix"
|
|
454
|
+
version = "1.0.7"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"bitflags",
|
|
459
|
+
"errno",
|
|
460
|
+
"libc",
|
|
461
|
+
"linux-raw-sys",
|
|
462
|
+
"windows-sys",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "ryu"
|
|
467
|
+
version = "1.0.20"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "serde"
|
|
473
|
+
version = "1.0.205"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"serde_derive",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "serde_derive"
|
|
482
|
+
version = "1.0.205"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"proc-macro2",
|
|
487
|
+
"quote",
|
|
488
|
+
"syn",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "serde_json"
|
|
493
|
+
version = "1.0.140"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"itoa",
|
|
498
|
+
"memchr",
|
|
499
|
+
"ryu",
|
|
500
|
+
"serde",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "syn"
|
|
505
|
+
version = "2.0.101"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"proc-macro2",
|
|
510
|
+
"quote",
|
|
511
|
+
"unicode-ident",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "target-lexicon"
|
|
516
|
+
version = "0.12.16"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "tempfile"
|
|
522
|
+
version = "3.20.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"fastrand",
|
|
527
|
+
"getrandom",
|
|
528
|
+
"once_cell",
|
|
529
|
+
"rustix",
|
|
530
|
+
"windows-sys",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "unicode-ident"
|
|
535
|
+
version = "1.0.12"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "unindent"
|
|
541
|
+
version = "0.2.3"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "wasi"
|
|
547
|
+
version = "0.14.2+wasi-0.2.4"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"wit-bindgen-rt",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "windows-sys"
|
|
556
|
+
version = "0.59.0"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"windows-targets",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "windows-targets"
|
|
565
|
+
version = "0.52.6"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"windows_aarch64_gnullvm",
|
|
570
|
+
"windows_aarch64_msvc",
|
|
571
|
+
"windows_i686_gnu",
|
|
572
|
+
"windows_i686_gnullvm",
|
|
573
|
+
"windows_i686_msvc",
|
|
574
|
+
"windows_x86_64_gnu",
|
|
575
|
+
"windows_x86_64_gnullvm",
|
|
576
|
+
"windows_x86_64_msvc",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "windows_aarch64_gnullvm"
|
|
581
|
+
version = "0.52.6"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "windows_aarch64_msvc"
|
|
587
|
+
version = "0.52.6"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "windows_i686_gnu"
|
|
593
|
+
version = "0.52.6"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "windows_i686_gnullvm"
|
|
599
|
+
version = "0.52.6"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "windows_i686_msvc"
|
|
605
|
+
version = "0.52.6"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "windows_x86_64_gnu"
|
|
611
|
+
version = "0.52.6"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "windows_x86_64_gnullvm"
|
|
617
|
+
version = "0.52.6"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "windows_x86_64_msvc"
|
|
623
|
+
version = "0.52.6"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "wit-bindgen-rt"
|
|
629
|
+
version = "0.39.0"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"bitflags",
|
|
634
|
+
]
|