xpict 0.3.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.
- xpict-0.3.0/Cargo.lock +973 -0
- xpict-0.3.0/Cargo.toml +20 -0
- xpict-0.3.0/PKG-INFO +174 -0
- xpict-0.3.0/README.md +137 -0
- xpict-0.3.0/crates/xpict-core/Cargo.toml +40 -0
- xpict-0.3.0/crates/xpict-core/README.md +35 -0
- xpict-0.3.0/crates/xpict-core/fonts/LICENSE-LiberationSans.txt +102 -0
- xpict-0.3.0/crates/xpict-core/fonts/LiberationSans-Bold.ttf +0 -0
- xpict-0.3.0/crates/xpict-core/fonts/LiberationSans-BoldItalic.ttf +0 -0
- xpict-0.3.0/crates/xpict-core/fonts/LiberationSans-Italic.ttf +0 -0
- xpict-0.3.0/crates/xpict-core/fonts/LiberationSans-Regular.ttf +0 -0
- xpict-0.3.0/crates/xpict-core/fonts/README.md +14 -0
- xpict-0.3.0/crates/xpict-core/src/align.rs +249 -0
- xpict-0.3.0/crates/xpict-core/src/bonds.rs +1230 -0
- xpict-0.3.0/crates/xpict-core/src/colormap.rs +307 -0
- xpict-0.3.0/crates/xpict-core/src/depict.rs +1750 -0
- xpict-0.3.0/crates/xpict-core/src/elements.rs +70 -0
- xpict-0.3.0/crates/xpict-core/src/elk.rs +82 -0
- xpict-0.3.0/crates/xpict-core/src/font.rs +724 -0
- xpict-0.3.0/crates/xpict-core/src/geom/mod.rs +336 -0
- xpict-0.3.0/crates/xpict-core/src/geom/ops.rs +300 -0
- xpict-0.3.0/crates/xpict-core/src/labels.rs +1237 -0
- xpict-0.3.0/crates/xpict-core/src/lib.rs +51 -0
- xpict-0.3.0/crates/xpict-core/src/markup.rs +573 -0
- xpict-0.3.0/crates/xpict-core/src/metrics.rs +229 -0
- xpict-0.3.0/crates/xpict-core/src/plotdot.rs +134 -0
- xpict-0.3.0/crates/xpict-core/src/rings.rs +477 -0
- xpict-0.3.0/crates/xpict-core/src/scene.rs +762 -0
- xpict-0.3.0/crates/xpict-core/tests/chem_labels.rs +254 -0
- xpict-0.3.0/crates/xpict-core/tests/depict_usage.rs +474 -0
- xpict-0.3.0/crates/xpict-py/Cargo.toml +24 -0
- xpict-0.3.0/crates/xpict-py/README.md +12 -0
- xpict-0.3.0/crates/xpict-py/src/lib.rs +497 -0
- xpict-0.3.0/pyproject.toml +107 -0
- xpict-0.3.0/python/xpict/__init__.py +91 -0
- xpict-0.3.0/python/xpict/_native.pyi +121 -0
- xpict-0.3.0/python/xpict/align.py +568 -0
- xpict-0.3.0/python/xpict/align_rdkit.py +321 -0
- xpict-0.3.0/python/xpict/api.py +107 -0
- xpict-0.3.0/python/xpict/backends/__init__.py +26 -0
- xpict-0.3.0/python/xpict/backends/base.py +45 -0
- xpict-0.3.0/python/xpict/backends/indigo.py +160 -0
- xpict-0.3.0/python/xpict/backends/rdkit_layout.py +176 -0
- xpict-0.3.0/python/xpict/client.py +546 -0
- xpict-0.3.0/python/xpict/contracts/__init__.py +38 -0
- xpict-0.3.0/python/xpict/contracts/depict.py +110 -0
- xpict-0.3.0/python/xpict/contracts/layout.py +51 -0
- xpict-0.3.0/python/xpict/contracts/scene.py +90 -0
- xpict-0.3.0/python/xpict/data/__init__.py +1 -0
- xpict-0.3.0/python/xpict/data/fonts/LICENSE-LiberationSans.txt +102 -0
- xpict-0.3.0/python/xpict/data/fonts/LiberationSans-Bold.ttf +0 -0
- xpict-0.3.0/python/xpict/data/fonts/LiberationSans-BoldItalic.ttf +0 -0
- xpict-0.3.0/python/xpict/data/fonts/LiberationSans-Italic.ttf +0 -0
- xpict-0.3.0/python/xpict/data/fonts/LiberationSans-Regular.ttf +0 -0
- xpict-0.3.0/python/xpict/data/fonts/README.md +12 -0
- xpict-0.3.0/python/xpict/data/fonts/__init__.py +1 -0
- xpict-0.3.0/python/xpict/diagram/__init__.py +3 -0
- xpict-0.3.0/python/xpict/diagram/elk.py +269 -0
- xpict-0.3.0/python/xpict/draw/__init__.py +24 -0
- xpict-0.3.0/python/xpict/draw/_xenosite_cm.py +260 -0
- xpict-0.3.0/python/xpict/draw/annotate.py +428 -0
- xpict-0.3.0/python/xpict/draw/arrows.py +360 -0
- xpict-0.3.0/python/xpict/draw/bonds.py +537 -0
- xpict-0.3.0/python/xpict/draw/collision.py +174 -0
- xpict-0.3.0/python/xpict/draw/colormap.py +57 -0
- xpict-0.3.0/python/xpict/draw/drawable.py +763 -0
- xpict-0.3.0/python/xpict/draw/drawn.py +295 -0
- xpict-0.3.0/python/xpict/draw/font_face.py +34 -0
- xpict-0.3.0/python/xpict/draw/glyphs.py +184 -0
- xpict-0.3.0/python/xpict/draw/halo.py +132 -0
- xpict-0.3.0/python/xpict/draw/label_place.py +126 -0
- xpict-0.3.0/python/xpict/draw/markush.py +142 -0
- xpict-0.3.0/python/xpict/draw/metrics.py +216 -0
- xpict-0.3.0/python/xpict/draw/mol_title.py +479 -0
- xpict-0.3.0/python/xpict/draw/paths.py +226 -0
- xpict-0.3.0/python/xpict/draw/plotdot.py +46 -0
- xpict-0.3.0/python/xpict/draw/richtext.py +351 -0
- xpict-0.3.0/python/xpict/draw/rings.py +383 -0
- xpict-0.3.0/python/xpict/draw/scene_builder.py +151 -0
- xpict-0.3.0/python/xpict/draw/svg.py +272 -0
- xpict-0.3.0/python/xpict/draw/text_metrics.py +324 -0
- xpict-0.3.0/python/xpict/export_schema.py +352 -0
- xpict-0.3.0/python/xpict/future/README.md +19 -0
- xpict-0.3.0/python/xpict/future/__init__.py +115 -0
- xpict-0.3.0/python/xpict/future/nodes.py +717 -0
- xpict-0.3.0/python/xpict/future/shorthand.py +203 -0
- xpict-0.3.0/python/xpict/future/spec.py +501 -0
- xpict-0.3.0/python/xpict/model.py +17 -0
- xpict-0.3.0/python/xpict/native_bridge.py +80 -0
- xpict-0.3.0/python/xpict/perception/__init__.py +43 -0
- xpict-0.3.0/python/xpict/render.py +7 -0
- xpict-0.3.0/python/xpict/scene.py +23 -0
- xpict-0.3.0/python/xpict/schema.py +59 -0
- xpict-0.3.0/python/xpict/structure.py +47 -0
- xpict-0.3.0/python/xpict/warnings.py +7 -0
xpict-0.3.0/Cargo.lock
ADDED
|
@@ -0,0 +1,973 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.14"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "autocfg"
|
|
28
|
+
version = "1.5.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bitflags"
|
|
34
|
+
version = "2.13.2"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bitvec"
|
|
40
|
+
version = "1.1.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"funty",
|
|
45
|
+
"radium",
|
|
46
|
+
"tap",
|
|
47
|
+
"wyz",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "bumpalo"
|
|
52
|
+
version = "3.20.3"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "byteorder"
|
|
58
|
+
version = "1.5.0"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "cc"
|
|
64
|
+
version = "1.4.7"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "54413ede23c2daf518f35156dfde027feb2374004d63bd497f983c8db9c0e313"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"find-msvc-tools",
|
|
69
|
+
"shlex",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "cfg-if"
|
|
74
|
+
version = "1.0.5"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "clap"
|
|
80
|
+
version = "4.6.7"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "aa8876b300ab35ba921adea3dfd70157a46249b33f95c9084ae5709785478946"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"clap_builder",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "clap_builder"
|
|
89
|
+
version = "4.6.7"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "ec0797fb7aeb1406c84efac526901f7ec3ead2124f946b494e72879d4b54704d"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"anstyle",
|
|
94
|
+
"clap_lex",
|
|
95
|
+
"strsim",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "clap_lex"
|
|
100
|
+
version = "1.1.1"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "1c133bc6a41be0d194c306b5506d15e6feeea7b1d6604bd3f8310dfb2ca96486"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "codespan-reporting"
|
|
106
|
+
version = "0.13.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"serde",
|
|
111
|
+
"termcolor",
|
|
112
|
+
"unicode-width",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "crc32fast"
|
|
117
|
+
version = "1.5.2"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"cfg-if",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "cxx"
|
|
126
|
+
version = "1.0.202"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "13f6de320895f42e6e081abb5c7983bedcf0b6d0ff9323de0d33f620c8ac1199"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"cc",
|
|
131
|
+
"cxx-build",
|
|
132
|
+
"cxxbridge-cmd",
|
|
133
|
+
"cxxbridge-flags",
|
|
134
|
+
"cxxbridge-macro",
|
|
135
|
+
"foldhash",
|
|
136
|
+
"link-cplusplus",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "cxx-build"
|
|
141
|
+
version = "1.0.202"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "4fde53ca86b9704a943fef0f1e1d836239a6aedca5de3c65fa9f97ec0bd46d39"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"cc",
|
|
146
|
+
"codespan-reporting",
|
|
147
|
+
"indexmap",
|
|
148
|
+
"proc-macro2",
|
|
149
|
+
"quote",
|
|
150
|
+
"scratch",
|
|
151
|
+
"syn 3.0.6",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "cxxbridge-cmd"
|
|
156
|
+
version = "1.0.202"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "07bae89236c811fd4d08ed3441759ac4ac98d752cbfd3de341315ba16ad20ec3"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"clap",
|
|
161
|
+
"codespan-reporting",
|
|
162
|
+
"indexmap",
|
|
163
|
+
"proc-macro2",
|
|
164
|
+
"quote",
|
|
165
|
+
"syn 3.0.6",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "cxxbridge-flags"
|
|
170
|
+
version = "1.0.202"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "49045042e5fced01b80742aba5508de82aa4f13677ed3fa2b4cda709c40c5918"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "cxxbridge-macro"
|
|
176
|
+
version = "1.0.202"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "b181252e2e3d3b5d183afbdc033a3958b445eb3e1a0ae65fc3d4f5259f5da6fd"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"indexmap",
|
|
181
|
+
"proc-macro2",
|
|
182
|
+
"quote",
|
|
183
|
+
"syn 3.0.6",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "either"
|
|
188
|
+
version = "1.18.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "elkrs"
|
|
194
|
+
version = "0.1.1"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "a0aa6d17007599c4bb42b342b55148832289bc8c7e41d83f01b19af1ef363de4"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"indexmap",
|
|
199
|
+
"serde",
|
|
200
|
+
"serde_json",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "env_logger"
|
|
205
|
+
version = "0.10.2"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"humantime",
|
|
210
|
+
"is-terminal",
|
|
211
|
+
"log",
|
|
212
|
+
"regex",
|
|
213
|
+
"termcolor",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "equivalent"
|
|
218
|
+
version = "1.0.2"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "errno"
|
|
224
|
+
version = "0.3.14"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"libc",
|
|
229
|
+
"windows-sys 0.61.2",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "find-msvc-tools"
|
|
234
|
+
version = "0.1.13"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "ef25905e51abafe4dcea6c15fec58c57b601cdbd0ee53d22ea1d3016c587d39b"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "flate2"
|
|
240
|
+
version = "1.1.10"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"crc32fast",
|
|
245
|
+
"miniz_oxide",
|
|
246
|
+
"zlib-rs",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "foldhash"
|
|
251
|
+
version = "0.2.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "funty"
|
|
257
|
+
version = "2.0.0"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "hashbrown"
|
|
263
|
+
version = "0.17.1"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "heck"
|
|
269
|
+
version = "0.5.0"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "hermit-abi"
|
|
275
|
+
version = "0.5.3"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "home"
|
|
281
|
+
version = "0.5.12"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"windows-sys 0.61.2",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "humantime"
|
|
290
|
+
version = "2.4.0"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "i_float"
|
|
296
|
+
version = "5.0.0"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "9ecaff1ce29bcacd72cdf581ba6fce636ef4c4e0b2da7e7846dd0137d98141e2"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"libm",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "i_key_sort"
|
|
305
|
+
version = "0.11.0"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "7c6c58d0c60705e66264ce0f788a69a2f21472aeb8188559e7c8c619dbdc10fa"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "i_overlay"
|
|
311
|
+
version = "9.0.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "a518dce2d7cf7e3758159747e7175c8b86ccdcd8d333dfcb7dbeb3eac2e324fc"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"i_float",
|
|
316
|
+
"i_key_sort",
|
|
317
|
+
"i_shape",
|
|
318
|
+
"i_tree",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "i_shape"
|
|
323
|
+
version = "5.0.0"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "fa1878f91ef7921feaf1b2346253ebc5e661878b22d5715195c1d5dcf0f20ae5"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"i_float",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "i_tree"
|
|
332
|
+
version = "0.19.0"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "1e9d4a992a9fe83130f41ceacceac3bb116a4355dfc9c8d6ecea4f1e4b4c6caf"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "indexmap"
|
|
338
|
+
version = "2.14.2"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"equivalent",
|
|
343
|
+
"hashbrown",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "indoc"
|
|
348
|
+
version = "2.0.7"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"rustversion",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "is-terminal"
|
|
357
|
+
version = "0.4.17"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"hermit-abi",
|
|
362
|
+
"libc",
|
|
363
|
+
"windows-sys 0.61.2",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "itoa"
|
|
368
|
+
version = "1.0.18"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "libc"
|
|
374
|
+
version = "0.2.189"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "libm"
|
|
380
|
+
version = "0.2.16"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "link-cplusplus"
|
|
386
|
+
version = "1.0.12"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"cc",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "linux-raw-sys"
|
|
395
|
+
version = "0.4.15"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "log"
|
|
401
|
+
version = "0.4.34"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "memchr"
|
|
407
|
+
version = "2.8.3"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "memoffset"
|
|
413
|
+
version = "0.9.1"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"autocfg",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "miniz_oxide"
|
|
422
|
+
version = "0.9.1"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"adler2",
|
|
427
|
+
"simd-adler32",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "once_cell"
|
|
432
|
+
version = "1.21.4"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "portable-atomic"
|
|
438
|
+
version = "1.15.0"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "proc-macro2"
|
|
444
|
+
version = "1.0.107"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"unicode-ident",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "pyo3"
|
|
453
|
+
version = "0.22.6"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"cfg-if",
|
|
458
|
+
"indoc",
|
|
459
|
+
"libc",
|
|
460
|
+
"memoffset",
|
|
461
|
+
"once_cell",
|
|
462
|
+
"portable-atomic",
|
|
463
|
+
"pyo3-build-config",
|
|
464
|
+
"pyo3-ffi",
|
|
465
|
+
"pyo3-macros",
|
|
466
|
+
"unindent",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "pyo3-build-config"
|
|
471
|
+
version = "0.22.6"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"once_cell",
|
|
476
|
+
"target-lexicon",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "pyo3-ffi"
|
|
481
|
+
version = "0.22.6"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"libc",
|
|
486
|
+
"pyo3-build-config",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "pyo3-macros"
|
|
491
|
+
version = "0.22.6"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"proc-macro2",
|
|
496
|
+
"pyo3-macros-backend",
|
|
497
|
+
"quote",
|
|
498
|
+
"syn 2.0.119",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "pyo3-macros-backend"
|
|
503
|
+
version = "0.22.6"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"heck",
|
|
508
|
+
"proc-macro2",
|
|
509
|
+
"pyo3-build-config",
|
|
510
|
+
"quote",
|
|
511
|
+
"syn 2.0.119",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "quote"
|
|
516
|
+
version = "1.0.47"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"proc-macro2",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "radium"
|
|
525
|
+
version = "0.7.0"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "rdkit"
|
|
531
|
+
version = "0.4.12"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "0b94d33c6331acb09551b75ba29db37b4da4b53a9573d79bb9c882177a921773"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"bitvec",
|
|
536
|
+
"byteorder",
|
|
537
|
+
"cxx",
|
|
538
|
+
"flate2",
|
|
539
|
+
"log",
|
|
540
|
+
"rdkit-sys",
|
|
541
|
+
"thiserror",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "rdkit-sys"
|
|
546
|
+
version = "0.4.12"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "4af98a4105fe690dcd8baa743f4e25e5c3807fa13a29878f39aefb9e82daf727"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"cxx",
|
|
551
|
+
"cxx-build",
|
|
552
|
+
"env_logger",
|
|
553
|
+
"which",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "regex"
|
|
558
|
+
version = "1.13.1"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"aho-corasick",
|
|
563
|
+
"memchr",
|
|
564
|
+
"regex-automata",
|
|
565
|
+
"regex-syntax",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "regex-automata"
|
|
570
|
+
version = "0.4.18"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"aho-corasick",
|
|
575
|
+
"memchr",
|
|
576
|
+
"regex-syntax",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "regex-syntax"
|
|
581
|
+
version = "0.8.11"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "rustix"
|
|
587
|
+
version = "0.38.44"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"bitflags",
|
|
592
|
+
"errno",
|
|
593
|
+
"libc",
|
|
594
|
+
"linux-raw-sys",
|
|
595
|
+
"windows-sys 0.59.0",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "rustversion"
|
|
600
|
+
version = "1.0.23"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "scratch"
|
|
606
|
+
version = "1.0.9"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2"
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "serde"
|
|
612
|
+
version = "1.0.229"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"serde_core",
|
|
617
|
+
"serde_derive",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "serde_core"
|
|
622
|
+
version = "1.0.229"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"serde_derive",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "serde_derive"
|
|
631
|
+
version = "1.0.229"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"proc-macro2",
|
|
636
|
+
"quote",
|
|
637
|
+
"syn 3.0.6",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "serde_json"
|
|
642
|
+
version = "1.0.151"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"indexmap",
|
|
647
|
+
"itoa",
|
|
648
|
+
"memchr",
|
|
649
|
+
"serde",
|
|
650
|
+
"serde_core",
|
|
651
|
+
"zmij",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "shlex"
|
|
656
|
+
version = "2.0.1"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "simd-adler32"
|
|
662
|
+
version = "0.3.10"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "strsim"
|
|
668
|
+
version = "0.11.1"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "syn"
|
|
674
|
+
version = "2.0.119"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"proc-macro2",
|
|
679
|
+
"quote",
|
|
680
|
+
"unicode-ident",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "syn"
|
|
685
|
+
version = "3.0.6"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"proc-macro2",
|
|
690
|
+
"quote",
|
|
691
|
+
"unicode-ident",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "tap"
|
|
696
|
+
version = "1.0.1"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "target-lexicon"
|
|
702
|
+
version = "0.12.16"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "termcolor"
|
|
708
|
+
version = "1.4.1"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"winapi-util",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "thiserror"
|
|
717
|
+
version = "1.0.69"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"thiserror-impl",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "thiserror-impl"
|
|
726
|
+
version = "1.0.69"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"proc-macro2",
|
|
731
|
+
"quote",
|
|
732
|
+
"syn 2.0.119",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "ttf-parser"
|
|
737
|
+
version = "0.25.1"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "unicode-ident"
|
|
743
|
+
version = "1.0.26"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "unicode-width"
|
|
749
|
+
version = "0.2.2"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "unindent"
|
|
755
|
+
version = "0.2.4"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "wasm-bindgen"
|
|
761
|
+
version = "0.2.128"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"cfg-if",
|
|
766
|
+
"once_cell",
|
|
767
|
+
"rustversion",
|
|
768
|
+
"wasm-bindgen-macro",
|
|
769
|
+
"wasm-bindgen-shared",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "wasm-bindgen-macro"
|
|
774
|
+
version = "0.2.128"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"quote",
|
|
779
|
+
"wasm-bindgen-macro-support",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "wasm-bindgen-macro-support"
|
|
784
|
+
version = "0.2.128"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"bumpalo",
|
|
789
|
+
"proc-macro2",
|
|
790
|
+
"quote",
|
|
791
|
+
"syn 3.0.6",
|
|
792
|
+
"wasm-bindgen-shared",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "wasm-bindgen-shared"
|
|
797
|
+
version = "0.2.128"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"unicode-ident",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "which"
|
|
806
|
+
version = "4.4.2"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"either",
|
|
811
|
+
"home",
|
|
812
|
+
"once_cell",
|
|
813
|
+
"rustix",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "winapi-util"
|
|
818
|
+
version = "0.1.11"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"windows-sys 0.61.2",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "windows-link"
|
|
827
|
+
version = "0.2.1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "windows-sys"
|
|
833
|
+
version = "0.59.0"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"windows-targets",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "windows-sys"
|
|
842
|
+
version = "0.61.2"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"windows-link",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "windows-targets"
|
|
851
|
+
version = "0.52.6"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"windows_aarch64_gnullvm",
|
|
856
|
+
"windows_aarch64_msvc",
|
|
857
|
+
"windows_i686_gnu",
|
|
858
|
+
"windows_i686_gnullvm",
|
|
859
|
+
"windows_i686_msvc",
|
|
860
|
+
"windows_x86_64_gnu",
|
|
861
|
+
"windows_x86_64_gnullvm",
|
|
862
|
+
"windows_x86_64_msvc",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "windows_aarch64_gnullvm"
|
|
867
|
+
version = "0.52.6"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "windows_aarch64_msvc"
|
|
873
|
+
version = "0.52.6"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "windows_i686_gnu"
|
|
879
|
+
version = "0.52.6"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "windows_i686_gnullvm"
|
|
885
|
+
version = "0.52.6"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "windows_i686_msvc"
|
|
891
|
+
version = "0.52.6"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "windows_x86_64_gnu"
|
|
897
|
+
version = "0.52.6"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "windows_x86_64_gnullvm"
|
|
903
|
+
version = "0.52.6"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "windows_x86_64_msvc"
|
|
909
|
+
version = "0.52.6"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "wyz"
|
|
915
|
+
version = "0.5.1"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"tap",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "xpict"
|
|
924
|
+
version = "0.3.0"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"cxx",
|
|
927
|
+
"cxx-build",
|
|
928
|
+
"rdkit",
|
|
929
|
+
"serde",
|
|
930
|
+
"thiserror",
|
|
931
|
+
"xpict-core",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "xpict-core"
|
|
936
|
+
version = "0.3.0"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"elkrs",
|
|
939
|
+
"i_overlay",
|
|
940
|
+
"serde",
|
|
941
|
+
"serde_json",
|
|
942
|
+
"ttf-parser",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "xpict-py"
|
|
947
|
+
version = "0.3.0"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"pyo3",
|
|
950
|
+
"serde_json",
|
|
951
|
+
"xpict-core",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "xpict-wasm"
|
|
956
|
+
version = "0.3.0"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"serde_json",
|
|
959
|
+
"wasm-bindgen",
|
|
960
|
+
"xpict-core",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "zlib-rs"
|
|
965
|
+
version = "0.6.8"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "b268e58e7c693d7c271f93ffc4ba3b380412554231c85bf61ca7af91042a4112"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "zmij"
|
|
971
|
+
version = "1.0.23"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|