pptxboss 0.2.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.
- pptxboss-0.2.0/Cargo.lock +730 -0
- pptxboss-0.2.0/Cargo.toml +30 -0
- pptxboss-0.2.0/LICENSE-APACHE +201 -0
- pptxboss-0.2.0/LICENSE-MIT +21 -0
- pptxboss-0.2.0/PKG-INFO +311 -0
- pptxboss-0.2.0/README.md +287 -0
- pptxboss-0.2.0/crates/pptxboss-check/Cargo.toml +17 -0
- pptxboss-0.2.0/crates/pptxboss-check/README.md +287 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/container.rs +322 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/content_types.rs +194 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/core_props.rs +142 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/lib.rs +309 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/pml.rs +697 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/relationships.rs +393 -0
- pptxboss-0.2.0/crates/pptxboss-check/src/xml_parts.rs +171 -0
- pptxboss-0.2.0/crates/pptxboss-check/tests/rules.rs +802 -0
- pptxboss-0.2.0/crates/pptxboss-core/Cargo.toml +24 -0
- pptxboss-0.2.0/crates/pptxboss-core/README.md +287 -0
- pptxboss-0.2.0/crates/pptxboss-core/benches/read.rs +89 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/cfb_ls.rs +24 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/inflate_ab.rs +58 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/inflate_check.rs +71 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/open_loop.rs +27 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/open_phases.rs +40 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/part_costs.rs +59 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/ppt_dump.rs +46 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/ppt_text.rs +75 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/ppt_walk.rs +313 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/read_counts.rs +115 -0
- pptxboss-0.2.0/crates/pptxboss-core/examples/time_file.rs +124 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/cfb.rs +696 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/chart.rs +603 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/comments.rs +180 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/crc32.rs +94 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/diagram.rs +263 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/document.rs +1107 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/encoding.rs +86 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/error.rs +68 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/hash.rs +108 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/inflate.rs +714 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/lib.rs +47 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/markdown.rs +575 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/mce.rs +173 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/model.rs +427 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/opc.rs +759 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/package.rs +656 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/pml.rs +279 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/ppt.rs +1397 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/presentation.rs +313 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/properties.rs +218 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/slide.rs +947 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/text.rs +350 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/xml.rs +1534 -0
- pptxboss-0.2.0/crates/pptxboss-core/src/zip.rs +1205 -0
- pptxboss-0.2.0/crates/pptxboss-core/tests/document.rs +670 -0
- pptxboss-0.2.0/crates/pptxboss-py/Cargo.toml +19 -0
- pptxboss-0.2.0/crates/pptxboss-py/src/lib.rs +1388 -0
- pptxboss-0.2.0/crates/pptxboss-py/src/write.rs +262 -0
- pptxboss-0.2.0/crates/pptxboss-testkit/Cargo.toml +12 -0
- pptxboss-0.2.0/crates/pptxboss-testkit/README.md +287 -0
- pptxboss-0.2.0/crates/pptxboss-testkit/examples/gen_fixtures.rs +100 -0
- pptxboss-0.2.0/crates/pptxboss-testkit/src/deck.rs +440 -0
- pptxboss-0.2.0/crates/pptxboss-testkit/src/legacy.rs +768 -0
- pptxboss-0.2.0/crates/pptxboss-testkit/src/lib.rs +372 -0
- pptxboss-0.2.0/crates/pptxboss-write/Cargo.toml +18 -0
- pptxboss-0.2.0/crates/pptxboss-write/README.md +287 -0
- pptxboss-0.2.0/crates/pptxboss-write/src/lib.rs +521 -0
- pptxboss-0.2.0/crates/pptxboss-write/src/markdown.rs +182 -0
- pptxboss-0.2.0/crates/pptxboss-write/src/parts.rs +847 -0
- pptxboss-0.2.0/crates/pptxboss-write/src/xml.rs +51 -0
- pptxboss-0.2.0/crates/pptxboss-write/src/zipw.rs +166 -0
- pptxboss-0.2.0/crates/pptxboss-write/tests/roundtrip.rs +240 -0
- pptxboss-0.2.0/pyproject.toml +51 -0
- pptxboss-0.2.0/python/pptxboss/__init__.py +47 -0
- pptxboss-0.2.0/python/pptxboss/_pptxboss.pyi +305 -0
- pptxboss-0.2.0/python/pptxboss/py.typed +0 -0
- pptxboss-0.2.0/python/pptxboss/write.py +6 -0
|
@@ -0,0 +1,730 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "autocfg"
|
|
72
|
+
version = "1.5.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "cast"
|
|
78
|
+
version = "0.3.0"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "cfg-if"
|
|
84
|
+
version = "1.0.4"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "ciborium"
|
|
90
|
+
version = "0.2.2"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"ciborium-io",
|
|
95
|
+
"ciborium-ll",
|
|
96
|
+
"serde",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "ciborium-io"
|
|
101
|
+
version = "0.2.2"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "ciborium-ll"
|
|
107
|
+
version = "0.2.2"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"ciborium-io",
|
|
112
|
+
"half",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "clap"
|
|
117
|
+
version = "4.6.6"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"clap_builder",
|
|
122
|
+
"clap_derive",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "clap_builder"
|
|
127
|
+
version = "4.6.6"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"anstream",
|
|
132
|
+
"anstyle",
|
|
133
|
+
"clap_lex",
|
|
134
|
+
"strsim",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "clap_derive"
|
|
139
|
+
version = "4.6.4"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"heck",
|
|
144
|
+
"proc-macro2",
|
|
145
|
+
"quote",
|
|
146
|
+
"syn 3.0.5",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "clap_lex"
|
|
151
|
+
version = "1.1.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "colorchoice"
|
|
157
|
+
version = "1.0.5"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "criterion"
|
|
163
|
+
version = "0.5.1"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"anes",
|
|
168
|
+
"cast",
|
|
169
|
+
"ciborium",
|
|
170
|
+
"clap",
|
|
171
|
+
"criterion-plot",
|
|
172
|
+
"is-terminal",
|
|
173
|
+
"itertools",
|
|
174
|
+
"num-traits",
|
|
175
|
+
"once_cell",
|
|
176
|
+
"oorandom",
|
|
177
|
+
"regex",
|
|
178
|
+
"serde",
|
|
179
|
+
"serde_derive",
|
|
180
|
+
"serde_json",
|
|
181
|
+
"tinytemplate",
|
|
182
|
+
"walkdir",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "criterion-plot"
|
|
187
|
+
version = "0.5.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"cast",
|
|
192
|
+
"itertools",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "crunchy"
|
|
197
|
+
version = "0.2.4"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "either"
|
|
203
|
+
version = "1.18.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "equivalent"
|
|
209
|
+
version = "1.0.2"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "flate2"
|
|
215
|
+
version = "1.1.10"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"zlib-rs",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "half"
|
|
224
|
+
version = "2.7.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"cfg-if",
|
|
229
|
+
"crunchy",
|
|
230
|
+
"zerocopy",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "hashbrown"
|
|
235
|
+
version = "0.17.1"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "heck"
|
|
241
|
+
version = "0.5.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "hermit-abi"
|
|
247
|
+
version = "0.5.3"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "indexmap"
|
|
253
|
+
version = "2.14.2"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"equivalent",
|
|
258
|
+
"hashbrown",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "indoc"
|
|
263
|
+
version = "2.0.7"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"rustversion",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "is-terminal"
|
|
272
|
+
version = "0.4.17"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"hermit-abi",
|
|
277
|
+
"libc",
|
|
278
|
+
"windows-sys",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "is_terminal_polyfill"
|
|
283
|
+
version = "1.70.2"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "itertools"
|
|
289
|
+
version = "0.10.5"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"either",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "itoa"
|
|
298
|
+
version = "1.0.18"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "libc"
|
|
304
|
+
version = "0.2.189"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "memchr"
|
|
310
|
+
version = "2.8.3"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "memoffset"
|
|
316
|
+
version = "0.9.1"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"autocfg",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "num-traits"
|
|
325
|
+
version = "0.2.19"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"autocfg",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "once_cell"
|
|
334
|
+
version = "1.21.4"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "once_cell_polyfill"
|
|
340
|
+
version = "1.70.2"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "oorandom"
|
|
346
|
+
version = "11.1.5"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "portable-atomic"
|
|
352
|
+
version = "1.15.0"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "pptxboss-check"
|
|
358
|
+
version = "0.2.0"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"pptxboss-core",
|
|
361
|
+
"pptxboss-testkit",
|
|
362
|
+
"serde",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "pptxboss-cli"
|
|
367
|
+
version = "0.2.0"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"clap",
|
|
370
|
+
"pptxboss-check",
|
|
371
|
+
"pptxboss-core",
|
|
372
|
+
"pptxboss-testkit",
|
|
373
|
+
"pptxboss-write",
|
|
374
|
+
"serde",
|
|
375
|
+
"serde_json",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "pptxboss-core"
|
|
380
|
+
version = "0.2.0"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"criterion",
|
|
383
|
+
"flate2",
|
|
384
|
+
"memchr",
|
|
385
|
+
"pptxboss-testkit",
|
|
386
|
+
"thiserror",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "pptxboss-py"
|
|
391
|
+
version = "0.2.0"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"pptxboss-check",
|
|
394
|
+
"pptxboss-core",
|
|
395
|
+
"pptxboss-write",
|
|
396
|
+
"pyo3",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "pptxboss-testkit"
|
|
401
|
+
version = "0.2.0"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"flate2",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "pptxboss-write"
|
|
408
|
+
version = "0.2.0"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"flate2",
|
|
411
|
+
"pptxboss-check",
|
|
412
|
+
"pptxboss-core",
|
|
413
|
+
"thiserror",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "proc-macro2"
|
|
418
|
+
version = "1.0.107"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"unicode-ident",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "pyo3"
|
|
427
|
+
version = "0.25.1"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"indoc",
|
|
432
|
+
"libc",
|
|
433
|
+
"memoffset",
|
|
434
|
+
"once_cell",
|
|
435
|
+
"portable-atomic",
|
|
436
|
+
"pyo3-build-config",
|
|
437
|
+
"pyo3-ffi",
|
|
438
|
+
"pyo3-macros",
|
|
439
|
+
"unindent",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "pyo3-build-config"
|
|
444
|
+
version = "0.25.1"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"once_cell",
|
|
449
|
+
"target-lexicon",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "pyo3-ffi"
|
|
454
|
+
version = "0.25.1"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"libc",
|
|
459
|
+
"pyo3-build-config",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "pyo3-macros"
|
|
464
|
+
version = "0.25.1"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"proc-macro2",
|
|
469
|
+
"pyo3-macros-backend",
|
|
470
|
+
"quote",
|
|
471
|
+
"syn 2.0.119",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "pyo3-macros-backend"
|
|
476
|
+
version = "0.25.1"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"heck",
|
|
481
|
+
"proc-macro2",
|
|
482
|
+
"pyo3-build-config",
|
|
483
|
+
"quote",
|
|
484
|
+
"syn 2.0.119",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "quote"
|
|
489
|
+
version = "1.0.47"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"proc-macro2",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "regex"
|
|
498
|
+
version = "1.13.1"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"aho-corasick",
|
|
503
|
+
"memchr",
|
|
504
|
+
"regex-automata",
|
|
505
|
+
"regex-syntax",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "regex-automata"
|
|
510
|
+
version = "0.4.18"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"aho-corasick",
|
|
515
|
+
"memchr",
|
|
516
|
+
"regex-syntax",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "regex-syntax"
|
|
521
|
+
version = "0.8.11"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "rustversion"
|
|
527
|
+
version = "1.0.23"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "same-file"
|
|
533
|
+
version = "1.0.6"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"winapi-util",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "serde"
|
|
542
|
+
version = "1.0.229"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"serde_core",
|
|
547
|
+
"serde_derive",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "serde_core"
|
|
552
|
+
version = "1.0.229"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"serde_derive",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "serde_derive"
|
|
561
|
+
version = "1.0.229"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"proc-macro2",
|
|
566
|
+
"quote",
|
|
567
|
+
"syn 3.0.5",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "serde_json"
|
|
572
|
+
version = "1.0.151"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"indexmap",
|
|
577
|
+
"itoa",
|
|
578
|
+
"memchr",
|
|
579
|
+
"serde",
|
|
580
|
+
"serde_core",
|
|
581
|
+
"zmij",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "strsim"
|
|
586
|
+
version = "0.11.1"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "syn"
|
|
592
|
+
version = "2.0.119"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"proc-macro2",
|
|
597
|
+
"quote",
|
|
598
|
+
"unicode-ident",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "syn"
|
|
603
|
+
version = "3.0.5"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"proc-macro2",
|
|
608
|
+
"quote",
|
|
609
|
+
"unicode-ident",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "target-lexicon"
|
|
614
|
+
version = "0.13.5"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "thiserror"
|
|
620
|
+
version = "2.0.20"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"thiserror-impl",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "thiserror-impl"
|
|
629
|
+
version = "2.0.20"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"proc-macro2",
|
|
634
|
+
"quote",
|
|
635
|
+
"syn 3.0.5",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "tinytemplate"
|
|
640
|
+
version = "1.2.1"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"serde",
|
|
645
|
+
"serde_json",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "unicode-ident"
|
|
650
|
+
version = "1.0.24"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "unindent"
|
|
656
|
+
version = "0.2.4"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "utf8parse"
|
|
662
|
+
version = "0.2.2"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "walkdir"
|
|
668
|
+
version = "2.5.0"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"same-file",
|
|
673
|
+
"winapi-util",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "winapi-util"
|
|
678
|
+
version = "0.1.11"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"windows-sys",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "windows-link"
|
|
687
|
+
version = "0.2.1"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "windows-sys"
|
|
693
|
+
version = "0.61.2"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"windows-link",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "zerocopy"
|
|
702
|
+
version = "0.8.57"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"zerocopy-derive",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "zerocopy-derive"
|
|
711
|
+
version = "0.8.57"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"proc-macro2",
|
|
716
|
+
"quote",
|
|
717
|
+
"syn 2.0.119",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "zlib-rs"
|
|
722
|
+
version = "0.6.7"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "zmij"
|
|
728
|
+
version = "1.0.23"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|