athanor_bio_tools 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- athanor_bio_tools-0.1.1/Cargo.lock +686 -0
- athanor_bio_tools-0.1.1/Cargo.toml +42 -0
- athanor_bio_tools-0.1.1/LICENSE +25 -0
- athanor_bio_tools-0.1.1/PKG-INFO +272 -0
- athanor_bio_tools-0.1.1/PYPI_LICENSE +25 -0
- athanor_bio_tools-0.1.1/PYPI_README.md +250 -0
- athanor_bio_tools-0.1.1/README.md +250 -0
- athanor_bio_tools-0.1.1/examples/readme_install.rs +21 -0
- athanor_bio_tools-0.1.1/examples/readme_run.rs +15 -0
- athanor_bio_tools-0.1.1/publish.ps1 +261 -0
- athanor_bio_tools-0.1.1/pyproject.toml +36 -0
- athanor_bio_tools-0.1.1/python/Cargo.lock +754 -0
- athanor_bio_tools-0.1.1/python/Cargo.toml +17 -0
- athanor_bio_tools-0.1.1/python/PYPI_LICENSE +25 -0
- athanor_bio_tools-0.1.1/python/PYPI_README.md +250 -0
- athanor_bio_tools-0.1.1/python/install.ps1 +2 -0
- athanor_bio_tools-0.1.1/python/rustfmt.toml +2 -0
- athanor_bio_tools-0.1.1/python/src/lib.rs +607 -0
- athanor_bio_tools-0.1.1/python/src/metadata.rs +651 -0
- athanor_bio_tools-0.1.1/python/src/run.rs +178 -0
- athanor_bio_tools-0.1.1/rustfmt.toml +2 -0
- athanor_bio_tools-0.1.1/src/input.rs +57 -0
- athanor_bio_tools-0.1.1/src/install/alphafold3.rs +14 -0
- athanor_bio_tools-0.1.1/src/install/boltz2.rs +39 -0
- athanor_bio_tools-0.1.1/src/install/boltzgen.rs +13 -0
- athanor_bio_tools-0.1.1/src/install/common.rs +1299 -0
- athanor_bio_tools-0.1.1/src/install/conda_tools.rs +417 -0
- athanor_bio_tools-0.1.1/src/install/igblast.rs +132 -0
- athanor_bio_tools-0.1.1/src/install/mod.rs +611 -0
- athanor_bio_tools-0.1.1/src/install/opendde.rs +136 -0
- athanor_bio_tools-0.1.1/src/install/protein_mpnn.rs +103 -0
- athanor_bio_tools-0.1.1/src/install/python_tools.rs +779 -0
- athanor_bio_tools-0.1.1/src/install/uninstall.rs +172 -0
- athanor_bio_tools-0.1.1/src/lib.rs +360 -0
- athanor_bio_tools-0.1.1/src/main.rs +220 -0
- athanor_bio_tools-0.1.1/src/output.rs +4 -0
- athanor_bio_tools-0.1.1/src/run.rs +711 -0
- athanor_bio_tools-0.1.1/src/run_log.rs +435 -0
- athanor_bio_tools-0.1.1/src/status.rs +520 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/abmpnn.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/aggrescan3d.rs +28 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/alphafold3.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/antibody_annotator.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/antifold.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/bindcraft.rs +32 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/biophi.rs +26 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/boltz2.rs +36 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/boltz_adme.rs +39 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/boltzgen.rs +36 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/catpred.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/chai1.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/deepimmuno.rs +29 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/deepsp.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/deepstabp.rs +26 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/dlkcat.rs +29 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/esmfold2.rs +30 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/abmpnn.json +85 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/aggrescan3d.json +117 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/alphafold3.json +101 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/antibody_annotator.json +123 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/antifold.json +101 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/bindcraft.json +451 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/biophi.json +82 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/boltz2.json +464 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/boltz_adme.json +21 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/boltzgen.json +1064 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/catpred.json +130 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/chai1.json +339 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/deepimmuno.json +78 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/deepsp.json +53 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/deepstabp.json +78 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/dlkcat.json +85 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/esmfold2.json +117 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/genie3.json +133 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/germinal.json +126 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/gromacs.json +140 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/highfold.json +211 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/igblast.json +307 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/igdesign.json +149 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/immunebuilder.json +207 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/ligandmpnn.json +419 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/mber.json +133 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/mod.rs +48 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/netsolp.json +95 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/opendde.json +259 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/orca.json +156 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/pdbbind.json +70 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/placer.json +182 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/proteinmpnn.json +271 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/proteinmpnn_ddg.json +150 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/protenix.json +380 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/rdkit.json +62 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/rfantibody.json +117 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/rfdiffusion.json +816 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/tap.json +139 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/thermompnn.json +94 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/fields/tlimmuno.json +78 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/genie3.rs +34 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/germinal.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/gromacs.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/highfold.rs +29 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/igblast.rs +28 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/igdesign.rs +30 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/immunebuilder.rs +34 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/ligandmpnn.rs +34 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/mber.rs +32 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/mod.rs +213 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/netsolp.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/opendde.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/orca.rs +31 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/pdbbind.rs +29 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/placer.rs +29 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/proteinmpnn.rs +36 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/proteinmpnn_ddg.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/protenix.rs +27 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/rdkit.rs +26 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/rfantibody.rs +26 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/rfdiffusion.rs +34 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/tap.rs +32 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/thermompnn.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/catalog/tlimmuno.rs +33 -0
- athanor_bio_tools-0.1.1/src/tool_definitions/mod.rs +352 -0
|
@@ -0,0 +1,686 @@
|
|
|
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 = "base64"
|
|
13
|
+
version = "0.22.1"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bio_tools"
|
|
19
|
+
version = "0.1.1"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"ureq",
|
|
22
|
+
"url",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "bytes"
|
|
27
|
+
version = "1.12.1"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "cc"
|
|
33
|
+
version = "1.4.0"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"find-msvc-tools",
|
|
38
|
+
"shlex",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "cfg-if"
|
|
43
|
+
version = "1.0.4"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "crc32fast"
|
|
49
|
+
version = "1.5.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"cfg-if",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "displaydoc"
|
|
58
|
+
version = "0.2.7"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"proc-macro2",
|
|
63
|
+
"quote",
|
|
64
|
+
"syn 3.0.3",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "find-msvc-tools"
|
|
69
|
+
version = "0.1.9"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "flate2"
|
|
75
|
+
version = "1.1.9"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"crc32fast",
|
|
80
|
+
"miniz_oxide",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "form_urlencoded"
|
|
85
|
+
version = "1.2.2"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"percent-encoding",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "getrandom"
|
|
94
|
+
version = "0.2.17"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"cfg-if",
|
|
99
|
+
"libc",
|
|
100
|
+
"wasi",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "http"
|
|
105
|
+
version = "1.5.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"bytes",
|
|
110
|
+
"itoa",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "httparse"
|
|
115
|
+
version = "1.10.1"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "icu_collections"
|
|
121
|
+
version = "2.2.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"displaydoc",
|
|
126
|
+
"potential_utf",
|
|
127
|
+
"utf8_iter",
|
|
128
|
+
"yoke",
|
|
129
|
+
"zerofrom",
|
|
130
|
+
"zerovec",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "icu_locale_core"
|
|
135
|
+
version = "2.2.0"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"displaydoc",
|
|
140
|
+
"litemap",
|
|
141
|
+
"tinystr",
|
|
142
|
+
"writeable",
|
|
143
|
+
"zerovec",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "icu_normalizer"
|
|
148
|
+
version = "2.2.0"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"icu_collections",
|
|
153
|
+
"icu_normalizer_data",
|
|
154
|
+
"icu_properties",
|
|
155
|
+
"icu_provider",
|
|
156
|
+
"smallvec",
|
|
157
|
+
"zerovec",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "icu_normalizer_data"
|
|
162
|
+
version = "2.2.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "icu_properties"
|
|
168
|
+
version = "2.2.0"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"icu_collections",
|
|
173
|
+
"icu_locale_core",
|
|
174
|
+
"icu_properties_data",
|
|
175
|
+
"icu_provider",
|
|
176
|
+
"zerotrie",
|
|
177
|
+
"zerovec",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "icu_properties_data"
|
|
182
|
+
version = "2.2.0"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "icu_provider"
|
|
188
|
+
version = "2.2.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"displaydoc",
|
|
193
|
+
"icu_locale_core",
|
|
194
|
+
"writeable",
|
|
195
|
+
"yoke",
|
|
196
|
+
"zerofrom",
|
|
197
|
+
"zerotrie",
|
|
198
|
+
"zerovec",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "idna"
|
|
203
|
+
version = "1.1.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"idna_adapter",
|
|
208
|
+
"smallvec",
|
|
209
|
+
"utf8_iter",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "idna_adapter"
|
|
214
|
+
version = "1.2.2"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"icu_normalizer",
|
|
219
|
+
"icu_properties",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "itoa"
|
|
224
|
+
version = "1.0.18"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "libc"
|
|
230
|
+
version = "0.2.189"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "litemap"
|
|
236
|
+
version = "0.8.2"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "log"
|
|
242
|
+
version = "0.4.33"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "miniz_oxide"
|
|
248
|
+
version = "0.8.9"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"adler2",
|
|
253
|
+
"simd-adler32",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "once_cell"
|
|
258
|
+
version = "1.21.4"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "percent-encoding"
|
|
264
|
+
version = "2.3.2"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "potential_utf"
|
|
270
|
+
version = "0.1.5"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"zerovec",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "proc-macro2"
|
|
279
|
+
version = "1.0.107"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"unicode-ident",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "quote"
|
|
288
|
+
version = "1.0.47"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"proc-macro2",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "ring"
|
|
297
|
+
version = "0.17.14"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"cc",
|
|
302
|
+
"cfg-if",
|
|
303
|
+
"getrandom",
|
|
304
|
+
"libc",
|
|
305
|
+
"untrusted",
|
|
306
|
+
"windows-sys",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "rustls"
|
|
311
|
+
version = "0.23.43"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"log",
|
|
316
|
+
"once_cell",
|
|
317
|
+
"ring",
|
|
318
|
+
"rustls-pki-types",
|
|
319
|
+
"rustls-webpki",
|
|
320
|
+
"subtle",
|
|
321
|
+
"zeroize",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "rustls-pki-types"
|
|
326
|
+
version = "1.15.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"zeroize",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "rustls-webpki"
|
|
335
|
+
version = "0.103.13"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"ring",
|
|
340
|
+
"rustls-pki-types",
|
|
341
|
+
"untrusted",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "serde"
|
|
346
|
+
version = "1.0.229"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"serde_core",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "serde_core"
|
|
355
|
+
version = "1.0.229"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"serde_derive",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "serde_derive"
|
|
364
|
+
version = "1.0.229"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"proc-macro2",
|
|
369
|
+
"quote",
|
|
370
|
+
"syn 3.0.3",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "shlex"
|
|
375
|
+
version = "2.0.1"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "simd-adler32"
|
|
381
|
+
version = "0.3.10"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "smallvec"
|
|
387
|
+
version = "1.15.2"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "stable_deref_trait"
|
|
393
|
+
version = "1.2.1"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "subtle"
|
|
399
|
+
version = "2.6.1"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "syn"
|
|
405
|
+
version = "2.0.119"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"proc-macro2",
|
|
410
|
+
"quote",
|
|
411
|
+
"unicode-ident",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "syn"
|
|
416
|
+
version = "3.0.3"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"proc-macro2",
|
|
421
|
+
"quote",
|
|
422
|
+
"unicode-ident",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "synstructure"
|
|
427
|
+
version = "0.13.2"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"proc-macro2",
|
|
432
|
+
"quote",
|
|
433
|
+
"syn 2.0.119",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "tinystr"
|
|
438
|
+
version = "0.8.3"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"displaydoc",
|
|
443
|
+
"zerovec",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "unicode-ident"
|
|
448
|
+
version = "1.0.24"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "untrusted"
|
|
454
|
+
version = "0.9.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "ureq"
|
|
460
|
+
version = "3.3.0"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"base64",
|
|
465
|
+
"flate2",
|
|
466
|
+
"log",
|
|
467
|
+
"percent-encoding",
|
|
468
|
+
"rustls",
|
|
469
|
+
"rustls-pki-types",
|
|
470
|
+
"ureq-proto",
|
|
471
|
+
"utf8-zero",
|
|
472
|
+
"webpki-roots",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "ureq-proto"
|
|
477
|
+
version = "0.6.0"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"base64",
|
|
482
|
+
"http",
|
|
483
|
+
"httparse",
|
|
484
|
+
"log",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "url"
|
|
489
|
+
version = "2.5.8"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"form_urlencoded",
|
|
494
|
+
"idna",
|
|
495
|
+
"percent-encoding",
|
|
496
|
+
"serde",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "utf8-zero"
|
|
501
|
+
version = "0.8.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "utf8_iter"
|
|
507
|
+
version = "1.0.4"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "wasi"
|
|
513
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "webpki-roots"
|
|
519
|
+
version = "1.0.9"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"rustls-pki-types",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "windows-sys"
|
|
528
|
+
version = "0.52.0"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"windows-targets",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "windows-targets"
|
|
537
|
+
version = "0.52.6"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"windows_aarch64_gnullvm",
|
|
542
|
+
"windows_aarch64_msvc",
|
|
543
|
+
"windows_i686_gnu",
|
|
544
|
+
"windows_i686_gnullvm",
|
|
545
|
+
"windows_i686_msvc",
|
|
546
|
+
"windows_x86_64_gnu",
|
|
547
|
+
"windows_x86_64_gnullvm",
|
|
548
|
+
"windows_x86_64_msvc",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "windows_aarch64_gnullvm"
|
|
553
|
+
version = "0.52.6"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "windows_aarch64_msvc"
|
|
559
|
+
version = "0.52.6"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "windows_i686_gnu"
|
|
565
|
+
version = "0.52.6"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "windows_i686_gnullvm"
|
|
571
|
+
version = "0.52.6"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "windows_i686_msvc"
|
|
577
|
+
version = "0.52.6"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "windows_x86_64_gnu"
|
|
583
|
+
version = "0.52.6"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "windows_x86_64_gnullvm"
|
|
589
|
+
version = "0.52.6"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "windows_x86_64_msvc"
|
|
595
|
+
version = "0.52.6"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "writeable"
|
|
601
|
+
version = "0.6.3"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "yoke"
|
|
607
|
+
version = "0.8.3"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"stable_deref_trait",
|
|
612
|
+
"yoke-derive",
|
|
613
|
+
"zerofrom",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "yoke-derive"
|
|
618
|
+
version = "0.8.2"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"proc-macro2",
|
|
623
|
+
"quote",
|
|
624
|
+
"syn 2.0.119",
|
|
625
|
+
"synstructure",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "zerofrom"
|
|
630
|
+
version = "0.1.8"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"zerofrom-derive",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "zerofrom-derive"
|
|
639
|
+
version = "0.1.7"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"proc-macro2",
|
|
644
|
+
"quote",
|
|
645
|
+
"syn 2.0.119",
|
|
646
|
+
"synstructure",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "zeroize"
|
|
651
|
+
version = "1.9.0"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "zerotrie"
|
|
657
|
+
version = "0.2.4"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"displaydoc",
|
|
662
|
+
"yoke",
|
|
663
|
+
"zerofrom",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "zerovec"
|
|
668
|
+
version = "0.11.6"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"yoke",
|
|
673
|
+
"zerofrom",
|
|
674
|
+
"zerovec-derive",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "zerovec-derive"
|
|
679
|
+
version = "0.11.3"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"proc-macro2",
|
|
684
|
+
"quote",
|
|
685
|
+
"syn 2.0.119",
|
|
686
|
+
]
|