chematic 0.4.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.
- chematic-0.4.0/Cargo.lock +1898 -0
- chematic-0.4.0/Cargo.toml +12 -0
- chematic-0.4.0/PKG-INFO +77 -0
- chematic-0.4.0/README.md +56 -0
- chematic-0.4.0/crates/chematic-chem/Cargo.toml +33 -0
- chematic-0.4.0/crates/chematic-chem/README.md +532 -0
- chematic-0.4.0/crates/chematic-chem/benches/descriptor_bench.rs +105 -0
- chematic-0.4.0/crates/chematic-chem/examples/debug_h.rs +48 -0
- chematic-0.4.0/crates/chematic-chem/examples/rdkit_compare.rs +343 -0
- chematic-0.4.0/crates/chematic-chem/examples/rdkit_pilot.rs +50 -0
- chematic-0.4.0/crates/chematic-chem/src/abbreviations.rs +119 -0
- chematic-0.4.0/crates/chematic-chem/src/admet.rs +355 -0
- chematic-0.4.0/crates/chematic-chem/src/alerts.rs +2203 -0
- chematic-0.4.0/crates/chematic-chem/src/atropisomer.rs +171 -0
- chematic-0.4.0/crates/chematic-chem/src/brics.rs +663 -0
- chematic-0.4.0/crates/chematic-chem/src/cache.rs +131 -0
- chematic-0.4.0/crates/chematic-chem/src/cip.rs +994 -0
- chematic-0.4.0/crates/chematic-chem/src/condensed.rs +394 -0
- chematic-0.4.0/crates/chematic-chem/src/descriptors.rs +2960 -0
- chematic-0.4.0/crates/chematic-chem/src/diversity.rs +187 -0
- chematic-0.4.0/crates/chematic-chem/src/esol.rs +117 -0
- chematic-0.4.0/crates/chematic-chem/src/estate.rs +239 -0
- chematic-0.4.0/crates/chematic-chem/src/gasteiger.rs +226 -0
- chematic-0.4.0/crates/chematic-chem/src/hash.rs +112 -0
- chematic-0.4.0/crates/chematic-chem/src/hydrogen.rs +196 -0
- chematic-0.4.0/crates/chematic-chem/src/ifg.rs +256 -0
- chematic-0.4.0/crates/chematic-chem/src/isotope_distribution.rs +294 -0
- chematic-0.4.0/crates/chematic-chem/src/iupac_stereo.rs +85 -0
- chematic-0.4.0/crates/chematic-chem/src/lib.rs +117 -0
- chematic-0.4.0/crates/chematic-chem/src/logd.rs +204 -0
- chematic-0.4.0/crates/chematic-chem/src/mmff94_bci.rs +733 -0
- chematic-0.4.0/crates/chematic-chem/src/mmp.rs +275 -0
- chematic-0.4.0/crates/chematic-chem/src/named_groups.rs +163 -0
- chematic-0.4.0/crates/chematic-chem/src/pka.rs +381 -0
- chematic-0.4.0/crates/chematic-chem/src/qed.rs +409 -0
- chematic-0.4.0/crates/chematic-chem/src/recap.rs +134 -0
- chematic-0.4.0/crates/chematic-chem/src/sa_score.rs +593 -0
- chematic-0.4.0/crates/chematic-chem/src/scaffold.rs +575 -0
- chematic-0.4.0/crates/chematic-chem/src/standardize.rs +1722 -0
- chematic-0.4.0/crates/chematic-chem/src/stereo.rs +269 -0
- chematic-0.4.0/crates/chematic-chem/src/tautomer.rs +1631 -0
- chematic-0.4.0/crates/chematic-chem/src/topo_descriptors.rs +827 -0
- chematic-0.4.0/crates/chematic-chem/src/vsa.rs +182 -0
- chematic-0.4.0/crates/chematic-chem/src/workflow.rs +739 -0
- chematic-0.4.0/crates/chematic-chem/src/xlogp3.rs +272 -0
- chematic-0.4.0/crates/chematic-chem/tests/rdkit_reference.rs +1003 -0
- chematic-0.4.0/crates/chematic-core/Cargo.toml +19 -0
- chematic-0.4.0/crates/chematic-core/README.md +89 -0
- chematic-0.4.0/crates/chematic-core/src/atom.rs +173 -0
- chematic-0.4.0/crates/chematic-core/src/bond.rs +150 -0
- chematic-0.4.0/crates/chematic-core/src/element.rs +496 -0
- chematic-0.4.0/crates/chematic-core/src/kekulization.rs +693 -0
- chematic-0.4.0/crates/chematic-core/src/lib.rs +34 -0
- chematic-0.4.0/crates/chematic-core/src/molecule.rs +1173 -0
- chematic-0.4.0/crates/chematic-core/src/stereo_group.rs +49 -0
- chematic-0.4.0/crates/chematic-core/src/valence.rs +419 -0
- chematic-0.4.0/crates/chematic-depict/Cargo.toml +26 -0
- chematic-0.4.0/crates/chematic-depict/README.md +82 -0
- chematic-0.4.0/crates/chematic-depict/src/grid.rs +248 -0
- chematic-0.4.0/crates/chematic-depict/src/layout.rs +890 -0
- chematic-0.4.0/crates/chematic-depict/src/lib.rs +443 -0
- chematic-0.4.0/crates/chematic-depict/src/png.rs +215 -0
- chematic-0.4.0/crates/chematic-depict/src/reaction_svg.rs +158 -0
- chematic-0.4.0/crates/chematic-depict/src/svg.rs +1315 -0
- chematic-0.4.0/crates/chematic-fp/Cargo.toml +30 -0
- chematic-0.4.0/crates/chematic-fp/README.md +75 -0
- chematic-0.4.0/crates/chematic-fp/benches/ecfp_bench.rs +44 -0
- chematic-0.4.0/crates/chematic-fp/src/atom_pair.rs +248 -0
- chematic-0.4.0/crates/chematic-fp/src/bitvec.rs +435 -0
- chematic-0.4.0/crates/chematic-fp/src/bulk.rs +229 -0
- chematic-0.4.0/crates/chematic-fp/src/ecfp.rs +512 -0
- chematic-0.4.0/crates/chematic-fp/src/erg.rs +1150 -0
- chematic-0.4.0/crates/chematic-fp/src/fcfp.rs +237 -0
- chematic-0.4.0/crates/chematic-fp/src/layered.rs +210 -0
- chematic-0.4.0/crates/chematic-fp/src/lib.rs +57 -0
- chematic-0.4.0/crates/chematic-fp/src/lsh.rs +249 -0
- chematic-0.4.0/crates/chematic-fp/src/maccs.rs +273 -0
- chematic-0.4.0/crates/chematic-fp/src/map4.rs +251 -0
- chematic-0.4.0/crates/chematic-fp/src/mhfp.rs +302 -0
- chematic-0.4.0/crates/chematic-fp/src/path.rs +230 -0
- chematic-0.4.0/crates/chematic-fp/src/pattern.rs +122 -0
- chematic-0.4.0/crates/chematic-fp/src/pharmacophore_fp.rs +189 -0
- chematic-0.4.0/crates/chematic-fp/src/reaction_fp.rs +269 -0
- chematic-0.4.0/crates/chematic-fp/src/search.rs +228 -0
- chematic-0.4.0/crates/chematic-fp/src/topo_path.rs +203 -0
- chematic-0.4.0/crates/chematic-inchi/Cargo.toml +22 -0
- chematic-0.4.0/crates/chematic-inchi/README.md +55 -0
- chematic-0.4.0/crates/chematic-inchi/src/key.rs +102 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/charge.rs +46 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/connection.rs +313 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/formula.rs +37 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/hydrogen.rs +127 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/isotope.rs +71 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/mod.rs +6 -0
- chematic-0.4.0/crates/chematic-inchi/src/layers/stereo.rs +240 -0
- chematic-0.4.0/crates/chematic-inchi/src/lib.rs +204 -0
- chematic-0.4.0/crates/chematic-inchi/src/parser.rs +1265 -0
- chematic-0.4.0/crates/chematic-iupac/Cargo.toml +23 -0
- chematic-0.4.0/crates/chematic-iupac/README.md +78 -0
- chematic-0.4.0/crates/chematic-iupac/src/lib.rs +1924 -0
- chematic-0.4.0/crates/chematic-mol/Cargo.toml +20 -0
- chematic-0.4.0/crates/chematic-mol/README.md +532 -0
- chematic-0.4.0/crates/chematic-mol/src/cdxml.rs +459 -0
- chematic-0.4.0/crates/chematic-mol/src/cml.rs +534 -0
- chematic-0.4.0/crates/chematic-mol/src/error.rs +50 -0
- chematic-0.4.0/crates/chematic-mol/src/lib.rs +41 -0
- chematic-0.4.0/crates/chematic-mol/src/mol2000.rs +707 -0
- chematic-0.4.0/crates/chematic-mol/src/mol2_tripos.rs +385 -0
- chematic-0.4.0/crates/chematic-mol/src/mol3000.rs +1117 -0
- chematic-0.4.0/crates/chematic-mol/src/rxn.rs +203 -0
- chematic-0.4.0/crates/chematic-mol/src/sdf.rs +367 -0
- chematic-0.4.0/crates/chematic-perception/Cargo.toml +22 -0
- chematic-0.4.0/crates/chematic-perception/README.md +532 -0
- chematic-0.4.0/crates/chematic-perception/src/aromaticity.rs +795 -0
- chematic-0.4.0/crates/chematic-perception/src/cip_priority.rs +219 -0
- chematic-0.4.0/crates/chematic-perception/src/lib.rs +219 -0
- chematic-0.4.0/crates/chematic-perception/src/pharmacophore.rs +253 -0
- chematic-0.4.0/crates/chematic-perception/src/ring_family.rs +261 -0
- chematic-0.4.0/crates/chematic-perception/src/sssr.rs +688 -0
- chematic-0.4.0/crates/chematic-perception/src/stereo2d.rs +468 -0
- chematic-0.4.0/crates/chematic-perception/src/stereo_validation.rs +335 -0
- chematic-0.4.0/crates/chematic-py/Cargo.toml +34 -0
- chematic-0.4.0/crates/chematic-py/README.md +56 -0
- chematic-0.4.0/crates/chematic-py/src/bulk.rs +364 -0
- chematic-0.4.0/crates/chematic-py/src/index.rs +132 -0
- chematic-0.4.0/crates/chematic-py/src/io.rs +143 -0
- chematic-0.4.0/crates/chematic-py/src/lib.rs +809 -0
- chematic-0.4.0/crates/chematic-rxn/Cargo.toml +21 -0
- chematic-0.4.0/crates/chematic-rxn/README.md +73 -0
- chematic-0.4.0/crates/chematic-rxn/src/balance.rs +149 -0
- chematic-0.4.0/crates/chematic-rxn/src/enumerate.rs +259 -0
- chematic-0.4.0/crates/chematic-rxn/src/green.rs +202 -0
- chematic-0.4.0/crates/chematic-rxn/src/lib.rs +33 -0
- chematic-0.4.0/crates/chematic-rxn/src/query.rs +1538 -0
- chematic-0.4.0/crates/chematic-rxn/src/reaction.rs +340 -0
- chematic-0.4.0/crates/chematic-rxn/src/transform.rs +484 -0
- chematic-0.4.0/crates/chematic-smarts/Cargo.toml +28 -0
- chematic-0.4.0/crates/chematic-smarts/README.md +74 -0
- chematic-0.4.0/crates/chematic-smarts/benches/smarts_bench.rs +99 -0
- chematic-0.4.0/crates/chematic-smarts/src/cache.rs +210 -0
- chematic-0.4.0/crates/chematic-smarts/src/cx.rs +216 -0
- chematic-0.4.0/crates/chematic-smarts/src/lib.rs +27 -0
- chematic-0.4.0/crates/chematic-smarts/src/match_vf2.rs +691 -0
- chematic-0.4.0/crates/chematic-smarts/src/mcs.rs +1214 -0
- chematic-0.4.0/crates/chematic-smarts/src/parser.rs +1350 -0
- chematic-0.4.0/crates/chematic-smarts/src/query.rs +156 -0
- chematic-0.4.0/crates/chematic-smarts/src/tests.rs +645 -0
- chematic-0.4.0/crates/chematic-smiles/Cargo.toml +26 -0
- chematic-0.4.0/crates/chematic-smiles/README.md +58 -0
- chematic-0.4.0/crates/chematic-smiles/benches/parse_bench.rs +40 -0
- chematic-0.4.0/crates/chematic-smiles/examples/parse_smiles.rs +37 -0
- chematic-0.4.0/crates/chematic-smiles/examples/validate_smiles.rs +167 -0
- chematic-0.4.0/crates/chematic-smiles/src/canonical.rs +829 -0
- chematic-0.4.0/crates/chematic-smiles/src/cx.rs +342 -0
- chematic-0.4.0/crates/chematic-smiles/src/error.rs +52 -0
- chematic-0.4.0/crates/chematic-smiles/src/lib.rs +46 -0
- chematic-0.4.0/crates/chematic-smiles/src/parser.rs +955 -0
- chematic-0.4.0/crates/chematic-smiles/src/random_smiles.rs +178 -0
- chematic-0.4.0/crates/chematic-smiles/src/smi_file.rs +135 -0
- chematic-0.4.0/crates/chematic-smiles/src/writer.rs +371 -0
- chematic-0.4.0/crates/chematic-smiles/tests/canonical_robustness.rs +234 -0
- chematic-0.4.0/crates/chematic-smiles/tests/chembl_roundtrip.rs +147 -0
- chematic-0.4.0/pyproject.toml +32 -0
- chematic-0.4.0/python/chematic/__init__.py +16 -0
- chematic-0.4.0/python/chematic/__init__.pyi +649 -0
|
@@ -0,0 +1,1898 @@
|
|
|
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.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aligned"
|
|
22
|
+
version = "0.4.3"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"as-slice",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "aligned-vec"
|
|
31
|
+
version = "0.6.4"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"equator",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "alloca"
|
|
40
|
+
version = "0.4.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"cc",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "anes"
|
|
49
|
+
version = "0.1.6"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle"
|
|
55
|
+
version = "1.0.14"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anyhow"
|
|
61
|
+
version = "1.0.102"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "arbitrary"
|
|
67
|
+
version = "1.4.2"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "arg_enum_proc_macro"
|
|
73
|
+
version = "0.3.4"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"proc-macro2",
|
|
78
|
+
"quote",
|
|
79
|
+
"syn",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "arrayref"
|
|
84
|
+
version = "0.3.9"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "arrayvec"
|
|
90
|
+
version = "0.7.6"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "as-slice"
|
|
96
|
+
version = "0.2.1"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"stable_deref_trait",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "autocfg"
|
|
105
|
+
version = "1.5.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "av-scenechange"
|
|
111
|
+
version = "0.14.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"aligned",
|
|
116
|
+
"anyhow",
|
|
117
|
+
"arg_enum_proc_macro",
|
|
118
|
+
"arrayvec",
|
|
119
|
+
"log",
|
|
120
|
+
"num-rational",
|
|
121
|
+
"num-traits",
|
|
122
|
+
"pastey",
|
|
123
|
+
"rayon",
|
|
124
|
+
"thiserror",
|
|
125
|
+
"v_frame",
|
|
126
|
+
"y4m",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "av1-grain"
|
|
131
|
+
version = "0.2.5"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"anyhow",
|
|
136
|
+
"arrayvec",
|
|
137
|
+
"log",
|
|
138
|
+
"nom",
|
|
139
|
+
"num-rational",
|
|
140
|
+
"v_frame",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "avif-serialize"
|
|
145
|
+
version = "0.8.9"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"arrayvec",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "bit_field"
|
|
154
|
+
version = "0.10.3"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "bitflags"
|
|
160
|
+
version = "2.13.0"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "bitstream-io"
|
|
166
|
+
version = "4.10.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"no_std_io2",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "block-buffer"
|
|
175
|
+
version = "0.12.1"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"hybrid-array",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "built"
|
|
184
|
+
version = "0.8.1"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "bumpalo"
|
|
190
|
+
version = "3.20.3"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "bytemuck"
|
|
196
|
+
version = "1.25.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "byteorder-lite"
|
|
202
|
+
version = "0.1.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "cast"
|
|
208
|
+
version = "0.3.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "cc"
|
|
214
|
+
version = "1.2.64"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"find-msvc-tools",
|
|
219
|
+
"jobserver",
|
|
220
|
+
"libc",
|
|
221
|
+
"shlex",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "cfg-if"
|
|
226
|
+
version = "1.0.4"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "chematic"
|
|
232
|
+
version = "0.4.0"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"chematic-3d",
|
|
235
|
+
"chematic-chem",
|
|
236
|
+
"chematic-core",
|
|
237
|
+
"chematic-depict",
|
|
238
|
+
"chematic-fp",
|
|
239
|
+
"chematic-inchi",
|
|
240
|
+
"chematic-iupac",
|
|
241
|
+
"chematic-mol",
|
|
242
|
+
"chematic-perception",
|
|
243
|
+
"chematic-rxn",
|
|
244
|
+
"chematic-smarts",
|
|
245
|
+
"chematic-smiles",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "chematic-3d"
|
|
250
|
+
version = "0.4.0"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"chematic-chem",
|
|
253
|
+
"chematic-core",
|
|
254
|
+
"chematic-ff",
|
|
255
|
+
"chematic-fp",
|
|
256
|
+
"chematic-perception",
|
|
257
|
+
"chematic-smarts",
|
|
258
|
+
"chematic-smiles",
|
|
259
|
+
"fastrand",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "chematic-chem"
|
|
264
|
+
version = "0.4.0"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"chematic-core",
|
|
267
|
+
"chematic-fp",
|
|
268
|
+
"chematic-iupac",
|
|
269
|
+
"chematic-perception",
|
|
270
|
+
"chematic-smarts",
|
|
271
|
+
"chematic-smiles",
|
|
272
|
+
"criterion",
|
|
273
|
+
"serde",
|
|
274
|
+
"serde_json",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "chematic-core"
|
|
279
|
+
version = "0.4.0"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "chematic-depict"
|
|
283
|
+
version = "0.4.0"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"chematic-core",
|
|
286
|
+
"chematic-perception",
|
|
287
|
+
"chematic-rxn",
|
|
288
|
+
"chematic-smiles",
|
|
289
|
+
"image",
|
|
290
|
+
"tiny-skia",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "chematic-ewald"
|
|
295
|
+
version = "0.4.0"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"chematic-3d",
|
|
298
|
+
"chematic-core",
|
|
299
|
+
"rustfft",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "chematic-ff"
|
|
304
|
+
version = "0.4.0"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"chematic-core",
|
|
307
|
+
"chematic-perception",
|
|
308
|
+
"chematic-smiles",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "chematic-fp"
|
|
313
|
+
version = "0.4.0"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"chematic-core",
|
|
316
|
+
"chematic-perception",
|
|
317
|
+
"chematic-rxn",
|
|
318
|
+
"chematic-smarts",
|
|
319
|
+
"chematic-smiles",
|
|
320
|
+
"criterion",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "chematic-inchi"
|
|
325
|
+
version = "0.4.0"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"chematic-chem",
|
|
328
|
+
"chematic-core",
|
|
329
|
+
"chematic-smiles",
|
|
330
|
+
"sha2",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "chematic-iupac"
|
|
335
|
+
version = "0.4.0"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"chematic-core",
|
|
338
|
+
"chematic-perception",
|
|
339
|
+
"chematic-smiles",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "chematic-mcp"
|
|
344
|
+
version = "0.4.0"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"chematic-3d",
|
|
347
|
+
"chematic-chem",
|
|
348
|
+
"chematic-core",
|
|
349
|
+
"chematic-fp",
|
|
350
|
+
"chematic-perception",
|
|
351
|
+
"chematic-smarts",
|
|
352
|
+
"chematic-smiles",
|
|
353
|
+
"serde_json",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "chematic-mol"
|
|
358
|
+
version = "0.4.0"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"chematic-core",
|
|
361
|
+
"chematic-rxn",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "chematic-perception"
|
|
366
|
+
version = "0.4.0"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"chematic-core",
|
|
369
|
+
"chematic-smiles",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "chematic-py"
|
|
374
|
+
version = "0.4.0"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"chematic-chem",
|
|
377
|
+
"chematic-core",
|
|
378
|
+
"chematic-depict",
|
|
379
|
+
"chematic-fp",
|
|
380
|
+
"chematic-inchi",
|
|
381
|
+
"chematic-iupac",
|
|
382
|
+
"chematic-mol",
|
|
383
|
+
"chematic-perception",
|
|
384
|
+
"chematic-rxn",
|
|
385
|
+
"chematic-smarts",
|
|
386
|
+
"chematic-smiles",
|
|
387
|
+
"ndarray",
|
|
388
|
+
"numpy",
|
|
389
|
+
"pyo3",
|
|
390
|
+
"rayon",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "chematic-rxn"
|
|
395
|
+
version = "0.4.0"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"chematic-core",
|
|
398
|
+
"chematic-smarts",
|
|
399
|
+
"chematic-smiles",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "chematic-smarts"
|
|
404
|
+
version = "0.4.0"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"chematic-core",
|
|
407
|
+
"chematic-perception",
|
|
408
|
+
"chematic-smiles",
|
|
409
|
+
"criterion",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "chematic-smiles"
|
|
414
|
+
version = "0.4.0"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"chematic-core",
|
|
417
|
+
"criterion",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "chematic-wasm"
|
|
422
|
+
version = "0.4.0"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"chematic-3d",
|
|
425
|
+
"chematic-chem",
|
|
426
|
+
"chematic-core",
|
|
427
|
+
"chematic-depict",
|
|
428
|
+
"chematic-ewald",
|
|
429
|
+
"chematic-ff",
|
|
430
|
+
"chematic-fp",
|
|
431
|
+
"chematic-inchi",
|
|
432
|
+
"chematic-iupac",
|
|
433
|
+
"chematic-mol",
|
|
434
|
+
"chematic-perception",
|
|
435
|
+
"chematic-rxn",
|
|
436
|
+
"chematic-smarts",
|
|
437
|
+
"chematic-smiles",
|
|
438
|
+
"console_error_panic_hook",
|
|
439
|
+
"serde_json",
|
|
440
|
+
"wasm-bindgen",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "ciborium"
|
|
445
|
+
version = "0.2.2"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"ciborium-io",
|
|
450
|
+
"ciborium-ll",
|
|
451
|
+
"serde",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "ciborium-io"
|
|
456
|
+
version = "0.2.2"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "ciborium-ll"
|
|
462
|
+
version = "0.2.2"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"ciborium-io",
|
|
467
|
+
"half",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "clap"
|
|
472
|
+
version = "4.6.1"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"clap_builder",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "clap_builder"
|
|
481
|
+
version = "4.6.0"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"anstyle",
|
|
486
|
+
"clap_lex",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "clap_lex"
|
|
491
|
+
version = "1.1.0"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "color_quant"
|
|
497
|
+
version = "1.1.0"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "console_error_panic_hook"
|
|
503
|
+
version = "0.1.7"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"cfg-if",
|
|
508
|
+
"wasm-bindgen",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "cpufeatures"
|
|
513
|
+
version = "0.3.0"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"libc",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "crc32fast"
|
|
522
|
+
version = "1.5.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"cfg-if",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "criterion"
|
|
531
|
+
version = "0.8.2"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"alloca",
|
|
536
|
+
"anes",
|
|
537
|
+
"cast",
|
|
538
|
+
"ciborium",
|
|
539
|
+
"clap",
|
|
540
|
+
"criterion-plot",
|
|
541
|
+
"itertools 0.13.0",
|
|
542
|
+
"num-traits",
|
|
543
|
+
"oorandom",
|
|
544
|
+
"page_size",
|
|
545
|
+
"plotters",
|
|
546
|
+
"rayon",
|
|
547
|
+
"regex",
|
|
548
|
+
"serde",
|
|
549
|
+
"serde_json",
|
|
550
|
+
"tinytemplate",
|
|
551
|
+
"walkdir",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "criterion-plot"
|
|
556
|
+
version = "0.8.2"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"cast",
|
|
561
|
+
"itertools 0.13.0",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "crossbeam-deque"
|
|
566
|
+
version = "0.8.6"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"crossbeam-epoch",
|
|
571
|
+
"crossbeam-utils",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "crossbeam-epoch"
|
|
576
|
+
version = "0.9.18"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"crossbeam-utils",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "crossbeam-utils"
|
|
585
|
+
version = "0.8.21"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "crunchy"
|
|
591
|
+
version = "0.2.4"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "crypto-common"
|
|
597
|
+
version = "0.2.2"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"hybrid-array",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "digest"
|
|
606
|
+
version = "0.11.3"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"block-buffer",
|
|
611
|
+
"crypto-common",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "either"
|
|
616
|
+
version = "1.16.0"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "equator"
|
|
622
|
+
version = "0.4.2"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"equator-macro",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "equator-macro"
|
|
631
|
+
version = "0.4.2"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"proc-macro2",
|
|
636
|
+
"quote",
|
|
637
|
+
"syn",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "exr"
|
|
642
|
+
version = "1.74.0"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"bit_field",
|
|
647
|
+
"half",
|
|
648
|
+
"lebe",
|
|
649
|
+
"miniz_oxide",
|
|
650
|
+
"rayon-core",
|
|
651
|
+
"smallvec",
|
|
652
|
+
"zune-inflate",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "fastrand"
|
|
657
|
+
version = "2.4.1"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"getrandom",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "fax"
|
|
666
|
+
version = "0.2.7"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "fdeflate"
|
|
672
|
+
version = "0.3.7"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"simd-adler32",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "find-msvc-tools"
|
|
681
|
+
version = "0.1.9"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "flate2"
|
|
687
|
+
version = "1.1.9"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"crc32fast",
|
|
692
|
+
"miniz_oxide",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "futures-core"
|
|
697
|
+
version = "0.3.32"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "futures-task"
|
|
703
|
+
version = "0.3.32"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "futures-util"
|
|
709
|
+
version = "0.3.32"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"futures-core",
|
|
714
|
+
"futures-task",
|
|
715
|
+
"pin-project-lite",
|
|
716
|
+
"slab",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "gen-sa-table"
|
|
721
|
+
version = "0.1.0"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"chematic-core",
|
|
724
|
+
"chematic-fp",
|
|
725
|
+
"chematic-smiles",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "getrandom"
|
|
730
|
+
version = "0.3.4"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"cfg-if",
|
|
735
|
+
"js-sys",
|
|
736
|
+
"libc",
|
|
737
|
+
"r-efi",
|
|
738
|
+
"wasip2",
|
|
739
|
+
"wasm-bindgen",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "gif"
|
|
744
|
+
version = "0.14.2"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"color_quant",
|
|
749
|
+
"weezl",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "half"
|
|
754
|
+
version = "2.7.1"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"cfg-if",
|
|
759
|
+
"crunchy",
|
|
760
|
+
"zerocopy",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "heck"
|
|
765
|
+
version = "0.5.0"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "hybrid-array"
|
|
771
|
+
version = "0.4.12"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"typenum",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "image"
|
|
780
|
+
version = "0.25.10"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"bytemuck",
|
|
785
|
+
"byteorder-lite",
|
|
786
|
+
"color_quant",
|
|
787
|
+
"exr",
|
|
788
|
+
"gif",
|
|
789
|
+
"image-webp",
|
|
790
|
+
"moxcms",
|
|
791
|
+
"num-traits",
|
|
792
|
+
"png",
|
|
793
|
+
"qoi",
|
|
794
|
+
"ravif",
|
|
795
|
+
"rayon",
|
|
796
|
+
"rgb",
|
|
797
|
+
"tiff",
|
|
798
|
+
"zune-core",
|
|
799
|
+
"zune-jpeg",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "image-webp"
|
|
804
|
+
version = "0.2.4"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"byteorder-lite",
|
|
809
|
+
"quick-error",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "imgref"
|
|
814
|
+
version = "1.12.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "89194689a993ab15268672e99e7b0e19da2da3268ac682e8f02d29d4d1434cd7"
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "interpolate_name"
|
|
820
|
+
version = "0.2.4"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"proc-macro2",
|
|
825
|
+
"quote",
|
|
826
|
+
"syn",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "itertools"
|
|
831
|
+
version = "0.13.0"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"either",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "itertools"
|
|
840
|
+
version = "0.14.0"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"either",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "itoa"
|
|
849
|
+
version = "1.0.18"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "jobserver"
|
|
855
|
+
version = "0.1.34"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"getrandom",
|
|
860
|
+
"libc",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "js-sys"
|
|
865
|
+
version = "0.3.102"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"cfg-if",
|
|
870
|
+
"futures-util",
|
|
871
|
+
"wasm-bindgen",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "lebe"
|
|
876
|
+
version = "0.5.3"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "libc"
|
|
882
|
+
version = "0.2.186"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "libfuzzer-sys"
|
|
888
|
+
version = "0.4.13"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "a9fd2f41a1cba099f79a0b6b6c35656cf7c03351a7bae8ff0f28f25270f929d2"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"arbitrary",
|
|
893
|
+
"cc",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "log"
|
|
898
|
+
version = "0.4.32"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "loop9"
|
|
904
|
+
version = "0.1.5"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"imgref",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "matrixmultiply"
|
|
913
|
+
version = "0.3.10"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"autocfg",
|
|
918
|
+
"rawpointer",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "maybe-rayon"
|
|
923
|
+
version = "0.1.1"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"cfg-if",
|
|
928
|
+
"rayon",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "memchr"
|
|
933
|
+
version = "2.8.2"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "miniz_oxide"
|
|
939
|
+
version = "0.8.9"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"adler2",
|
|
944
|
+
"simd-adler32",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "moxcms"
|
|
949
|
+
version = "0.8.1"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"num-traits",
|
|
954
|
+
"pxfm",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "ndarray"
|
|
959
|
+
version = "0.17.2"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"matrixmultiply",
|
|
964
|
+
"num-complex",
|
|
965
|
+
"num-integer",
|
|
966
|
+
"num-traits",
|
|
967
|
+
"portable-atomic",
|
|
968
|
+
"portable-atomic-util",
|
|
969
|
+
"rawpointer",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "new_debug_unreachable"
|
|
974
|
+
version = "1.0.6"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "no_std_io2"
|
|
980
|
+
version = "0.9.4"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"memchr",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "nom"
|
|
989
|
+
version = "8.0.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"memchr",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "noop_proc_macro"
|
|
998
|
+
version = "0.3.0"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "num-bigint"
|
|
1004
|
+
version = "0.4.6"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"num-integer",
|
|
1009
|
+
"num-traits",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "num-complex"
|
|
1014
|
+
version = "0.4.6"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"num-traits",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "num-derive"
|
|
1023
|
+
version = "0.4.2"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"proc-macro2",
|
|
1028
|
+
"quote",
|
|
1029
|
+
"syn",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "num-integer"
|
|
1034
|
+
version = "0.1.46"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"num-traits",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "num-rational"
|
|
1043
|
+
version = "0.4.2"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"num-bigint",
|
|
1048
|
+
"num-integer",
|
|
1049
|
+
"num-traits",
|
|
1050
|
+
]
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "num-traits"
|
|
1054
|
+
version = "0.2.19"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"autocfg",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "numpy"
|
|
1063
|
+
version = "0.29.0"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"libc",
|
|
1068
|
+
"ndarray",
|
|
1069
|
+
"num-complex",
|
|
1070
|
+
"num-integer",
|
|
1071
|
+
"num-traits",
|
|
1072
|
+
"pyo3",
|
|
1073
|
+
"pyo3-build-config",
|
|
1074
|
+
"rustc-hash",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "once_cell"
|
|
1079
|
+
version = "1.21.4"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "oorandom"
|
|
1085
|
+
version = "11.1.5"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "page_size"
|
|
1091
|
+
version = "0.6.0"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"libc",
|
|
1096
|
+
"winapi",
|
|
1097
|
+
]
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "paste"
|
|
1101
|
+
version = "1.0.15"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "pastey"
|
|
1107
|
+
version = "0.1.1"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "pin-project-lite"
|
|
1113
|
+
version = "0.2.17"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "plotters"
|
|
1119
|
+
version = "0.3.7"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"num-traits",
|
|
1124
|
+
"plotters-backend",
|
|
1125
|
+
"plotters-svg",
|
|
1126
|
+
"wasm-bindgen",
|
|
1127
|
+
"web-sys",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "plotters-backend"
|
|
1132
|
+
version = "0.3.7"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "plotters-svg"
|
|
1138
|
+
version = "0.3.7"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"plotters-backend",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "png"
|
|
1147
|
+
version = "0.18.1"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"bitflags",
|
|
1152
|
+
"crc32fast",
|
|
1153
|
+
"fdeflate",
|
|
1154
|
+
"flate2",
|
|
1155
|
+
"miniz_oxide",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "portable-atomic"
|
|
1160
|
+
version = "1.13.1"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "portable-atomic-util"
|
|
1166
|
+
version = "0.2.7"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"portable-atomic",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "ppv-lite86"
|
|
1175
|
+
version = "0.2.21"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"zerocopy",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "primal-check"
|
|
1184
|
+
version = "0.3.4"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"num-integer",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "proc-macro2"
|
|
1193
|
+
version = "1.0.106"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"unicode-ident",
|
|
1198
|
+
]
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "profiling"
|
|
1202
|
+
version = "1.0.18"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"profiling-procmacros",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "profiling-procmacros"
|
|
1211
|
+
version = "1.0.18"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"quote",
|
|
1216
|
+
"syn",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "pxfm"
|
|
1221
|
+
version = "0.1.29"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "pyo3"
|
|
1227
|
+
version = "0.29.0"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"libc",
|
|
1232
|
+
"once_cell",
|
|
1233
|
+
"portable-atomic",
|
|
1234
|
+
"pyo3-build-config",
|
|
1235
|
+
"pyo3-ffi",
|
|
1236
|
+
"pyo3-macros",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "pyo3-build-config"
|
|
1241
|
+
version = "0.29.0"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"target-lexicon",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "pyo3-ffi"
|
|
1250
|
+
version = "0.29.0"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"libc",
|
|
1255
|
+
"pyo3-build-config",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "pyo3-macros"
|
|
1260
|
+
version = "0.29.0"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
1263
|
+
dependencies = [
|
|
1264
|
+
"proc-macro2",
|
|
1265
|
+
"pyo3-macros-backend",
|
|
1266
|
+
"quote",
|
|
1267
|
+
"syn",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "pyo3-macros-backend"
|
|
1272
|
+
version = "0.29.0"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"heck",
|
|
1277
|
+
"proc-macro2",
|
|
1278
|
+
"quote",
|
|
1279
|
+
"syn",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "qoi"
|
|
1284
|
+
version = "0.4.1"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"bytemuck",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "quick-error"
|
|
1293
|
+
version = "2.0.1"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "quote"
|
|
1299
|
+
version = "1.0.45"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"proc-macro2",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "r-efi"
|
|
1308
|
+
version = "5.3.0"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "rand"
|
|
1314
|
+
version = "0.9.4"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"rand_chacha",
|
|
1319
|
+
"rand_core",
|
|
1320
|
+
]
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "rand_chacha"
|
|
1324
|
+
version = "0.9.0"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1327
|
+
dependencies = [
|
|
1328
|
+
"ppv-lite86",
|
|
1329
|
+
"rand_core",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "rand_core"
|
|
1334
|
+
version = "0.9.5"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"getrandom",
|
|
1339
|
+
]
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "rav1e"
|
|
1343
|
+
version = "0.8.1"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"aligned-vec",
|
|
1348
|
+
"arbitrary",
|
|
1349
|
+
"arg_enum_proc_macro",
|
|
1350
|
+
"arrayvec",
|
|
1351
|
+
"av-scenechange",
|
|
1352
|
+
"av1-grain",
|
|
1353
|
+
"bitstream-io",
|
|
1354
|
+
"built",
|
|
1355
|
+
"cfg-if",
|
|
1356
|
+
"interpolate_name",
|
|
1357
|
+
"itertools 0.14.0",
|
|
1358
|
+
"libc",
|
|
1359
|
+
"libfuzzer-sys",
|
|
1360
|
+
"log",
|
|
1361
|
+
"maybe-rayon",
|
|
1362
|
+
"new_debug_unreachable",
|
|
1363
|
+
"noop_proc_macro",
|
|
1364
|
+
"num-derive",
|
|
1365
|
+
"num-traits",
|
|
1366
|
+
"paste",
|
|
1367
|
+
"profiling",
|
|
1368
|
+
"rand",
|
|
1369
|
+
"rand_chacha",
|
|
1370
|
+
"simd_helpers",
|
|
1371
|
+
"thiserror",
|
|
1372
|
+
"v_frame",
|
|
1373
|
+
"wasm-bindgen",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "ravif"
|
|
1378
|
+
version = "0.13.0"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"avif-serialize",
|
|
1383
|
+
"imgref",
|
|
1384
|
+
"loop9",
|
|
1385
|
+
"quick-error",
|
|
1386
|
+
"rav1e",
|
|
1387
|
+
"rayon",
|
|
1388
|
+
"rgb",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "rawpointer"
|
|
1393
|
+
version = "0.2.1"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "rayon"
|
|
1399
|
+
version = "1.12.0"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"either",
|
|
1404
|
+
"rayon-core",
|
|
1405
|
+
]
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "rayon-core"
|
|
1409
|
+
version = "1.13.0"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1412
|
+
dependencies = [
|
|
1413
|
+
"crossbeam-deque",
|
|
1414
|
+
"crossbeam-utils",
|
|
1415
|
+
]
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "regex"
|
|
1419
|
+
version = "1.12.4"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
1422
|
+
dependencies = [
|
|
1423
|
+
"aho-corasick",
|
|
1424
|
+
"memchr",
|
|
1425
|
+
"regex-automata",
|
|
1426
|
+
"regex-syntax",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "regex-automata"
|
|
1431
|
+
version = "0.4.14"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"aho-corasick",
|
|
1436
|
+
"memchr",
|
|
1437
|
+
"regex-syntax",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "regex-syntax"
|
|
1442
|
+
version = "0.8.11"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "rgb"
|
|
1448
|
+
version = "0.8.53"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "rustc-hash"
|
|
1454
|
+
version = "2.1.2"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "rustfft"
|
|
1460
|
+
version = "6.4.1"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"num-complex",
|
|
1465
|
+
"num-integer",
|
|
1466
|
+
"num-traits",
|
|
1467
|
+
"primal-check",
|
|
1468
|
+
"strength_reduce",
|
|
1469
|
+
"transpose",
|
|
1470
|
+
]
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "rustversion"
|
|
1474
|
+
version = "1.0.22"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "same-file"
|
|
1480
|
+
version = "1.0.6"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"winapi-util",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "serde"
|
|
1489
|
+
version = "1.0.228"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"serde_core",
|
|
1494
|
+
"serde_derive",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "serde_core"
|
|
1499
|
+
version = "1.0.228"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"serde_derive",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "serde_derive"
|
|
1508
|
+
version = "1.0.228"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1511
|
+
dependencies = [
|
|
1512
|
+
"proc-macro2",
|
|
1513
|
+
"quote",
|
|
1514
|
+
"syn",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "serde_json"
|
|
1519
|
+
version = "1.0.150"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"itoa",
|
|
1524
|
+
"memchr",
|
|
1525
|
+
"serde",
|
|
1526
|
+
"serde_core",
|
|
1527
|
+
"zmij",
|
|
1528
|
+
]
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "sha2"
|
|
1532
|
+
version = "0.11.0"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"cfg-if",
|
|
1537
|
+
"cpufeatures",
|
|
1538
|
+
"digest",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "shlex"
|
|
1543
|
+
version = "2.0.1"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "simd-adler32"
|
|
1549
|
+
version = "0.3.9"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "simd_helpers"
|
|
1555
|
+
version = "0.1.0"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"quote",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "slab"
|
|
1564
|
+
version = "0.4.12"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "smallvec"
|
|
1570
|
+
version = "1.15.2"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "stable_deref_trait"
|
|
1576
|
+
version = "1.2.1"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "strength_reduce"
|
|
1582
|
+
version = "0.2.4"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "strict-num"
|
|
1588
|
+
version = "0.1.1"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "syn"
|
|
1594
|
+
version = "2.0.117"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"proc-macro2",
|
|
1599
|
+
"quote",
|
|
1600
|
+
"unicode-ident",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "target-lexicon"
|
|
1605
|
+
version = "0.13.5"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "thiserror"
|
|
1611
|
+
version = "2.0.18"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"thiserror-impl",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "thiserror-impl"
|
|
1620
|
+
version = "2.0.18"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"proc-macro2",
|
|
1625
|
+
"quote",
|
|
1626
|
+
"syn",
|
|
1627
|
+
]
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "tiff"
|
|
1631
|
+
version = "0.11.3"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"fax",
|
|
1636
|
+
"flate2",
|
|
1637
|
+
"half",
|
|
1638
|
+
"quick-error",
|
|
1639
|
+
"weezl",
|
|
1640
|
+
"zune-jpeg",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "tiny-skia"
|
|
1645
|
+
version = "0.12.0"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"arrayref",
|
|
1650
|
+
"arrayvec",
|
|
1651
|
+
"bytemuck",
|
|
1652
|
+
"cfg-if",
|
|
1653
|
+
"log",
|
|
1654
|
+
"png",
|
|
1655
|
+
"tiny-skia-path",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "tiny-skia-path"
|
|
1660
|
+
version = "0.12.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"arrayref",
|
|
1665
|
+
"bytemuck",
|
|
1666
|
+
"strict-num",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "tinytemplate"
|
|
1671
|
+
version = "1.2.1"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"serde",
|
|
1676
|
+
"serde_json",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "transpose"
|
|
1681
|
+
version = "0.2.3"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"num-integer",
|
|
1686
|
+
"strength_reduce",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "typenum"
|
|
1691
|
+
version = "1.20.1"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "unicode-ident"
|
|
1697
|
+
version = "1.0.24"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "v_frame"
|
|
1703
|
+
version = "0.3.9"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"aligned-vec",
|
|
1708
|
+
"num-traits",
|
|
1709
|
+
"wasm-bindgen",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "walkdir"
|
|
1714
|
+
version = "2.5.0"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"same-file",
|
|
1719
|
+
"winapi-util",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "wasip2"
|
|
1724
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"wit-bindgen",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "wasm-bindgen"
|
|
1733
|
+
version = "0.2.125"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"cfg-if",
|
|
1738
|
+
"once_cell",
|
|
1739
|
+
"rustversion",
|
|
1740
|
+
"wasm-bindgen-macro",
|
|
1741
|
+
"wasm-bindgen-shared",
|
|
1742
|
+
]
|
|
1743
|
+
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "wasm-bindgen-macro"
|
|
1746
|
+
version = "0.2.125"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
1749
|
+
dependencies = [
|
|
1750
|
+
"quote",
|
|
1751
|
+
"wasm-bindgen-macro-support",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "wasm-bindgen-macro-support"
|
|
1756
|
+
version = "0.2.125"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"bumpalo",
|
|
1761
|
+
"proc-macro2",
|
|
1762
|
+
"quote",
|
|
1763
|
+
"syn",
|
|
1764
|
+
"wasm-bindgen-shared",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "wasm-bindgen-shared"
|
|
1769
|
+
version = "0.2.125"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"unicode-ident",
|
|
1774
|
+
]
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "web-sys"
|
|
1778
|
+
version = "0.3.102"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
1781
|
+
dependencies = [
|
|
1782
|
+
"js-sys",
|
|
1783
|
+
"wasm-bindgen",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "weezl"
|
|
1788
|
+
version = "0.1.12"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "winapi"
|
|
1794
|
+
version = "0.3.9"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"winapi-i686-pc-windows-gnu",
|
|
1799
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1804
|
+
version = "0.4.0"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1807
|
+
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "winapi-util"
|
|
1810
|
+
version = "0.1.11"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1813
|
+
dependencies = [
|
|
1814
|
+
"windows-sys",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1819
|
+
version = "0.4.0"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "windows-link"
|
|
1825
|
+
version = "0.2.1"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "windows-sys"
|
|
1831
|
+
version = "0.61.2"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"windows-link",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "wit-bindgen"
|
|
1840
|
+
version = "0.57.1"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "y4m"
|
|
1846
|
+
version = "0.8.0"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "zerocopy"
|
|
1852
|
+
version = "0.8.52"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1855
|
+
dependencies = [
|
|
1856
|
+
"zerocopy-derive",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "zerocopy-derive"
|
|
1861
|
+
version = "0.8.52"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1864
|
+
dependencies = [
|
|
1865
|
+
"proc-macro2",
|
|
1866
|
+
"quote",
|
|
1867
|
+
"syn",
|
|
1868
|
+
]
|
|
1869
|
+
|
|
1870
|
+
[[package]]
|
|
1871
|
+
name = "zmij"
|
|
1872
|
+
version = "1.0.21"
|
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "zune-core"
|
|
1878
|
+
version = "0.5.1"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "zune-inflate"
|
|
1884
|
+
version = "0.2.54"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"simd-adler32",
|
|
1889
|
+
]
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "zune-jpeg"
|
|
1893
|
+
version = "0.5.15"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"zune-core",
|
|
1898
|
+
]
|