rustigc-py 0.0.3__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.
- rustigc_py-0.0.3/Cargo.lock +1367 -0
- rustigc_py-0.0.3/Cargo.toml +23 -0
- rustigc_py-0.0.3/LICENSE +280 -0
- rustigc_py-0.0.3/PKG-INFO +100 -0
- rustigc_py-0.0.3/README.md +70 -0
- rustigc_py-0.0.3/pyproject.toml +74 -0
- rustigc_py-0.0.3/python/rustigcpy/__init__.py +43 -0
- rustigc_py-0.0.3/python/rustigcpy/fix.py +56 -0
- rustigc_py-0.0.3/python/rustigcpy/flight.py +50 -0
- rustigc_py-0.0.3/python/rustigcpy/log.py +260 -0
- rustigc_py-0.0.3/python/rustigcpy/py.typed +0 -0
- rustigc_py-0.0.3/python/rustigcpy/score.py +66 -0
- rustigc_py-0.0.3/python/rustigcpy/scorer.py +54 -0
- rustigc_py-0.0.3/python/rustigcpy/track.py +75 -0
- rustigc_py-0.0.3/rustigc/Cargo.toml +56 -0
- rustigc_py-0.0.3/rustigc/README.md +52 -0
- rustigc_py-0.0.3/rustigc/benches/benches.rs +106 -0
- rustigc_py-0.0.3/rustigc/src/analysis/flight.rs +205 -0
- rustigc_py-0.0.3/rustigc/src/analysis/mod.rs +5 -0
- rustigc_py-0.0.3/rustigc/src/decode/bad.rs +31 -0
- rustigc_py-0.0.3/rustigc/src/decode/datetime.rs +74 -0
- rustigc_py-0.0.3/rustigc/src/decode/event.rs +265 -0
- rustigc_py-0.0.3/rustigc/src/decode/extension.rs +219 -0
- rustigc_py-0.0.3/rustigc/src/decode/fix.rs +238 -0
- rustigc_py-0.0.3/rustigc/src/decode/header.rs +206 -0
- rustigc_py-0.0.3/rustigc/src/decode/mod.rs +144 -0
- rustigc_py-0.0.3/rustigc/src/decode/recorder.rs +120 -0
- rustigc_py-0.0.3/rustigc/src/decode/task.rs +271 -0
- rustigc_py-0.0.3/rustigc/src/decode/utils.rs +200 -0
- rustigc_py-0.0.3/rustigc/src/error.rs +70 -0
- rustigc_py-0.0.3/rustigc/src/lib.rs +92 -0
- rustigc_py-0.0.3/rustigc/src/log.rs +187 -0
- rustigc_py-0.0.3/rustigc/src/rawlog.rs +135 -0
- rustigc_py-0.0.3/rustigc/src/score/cache/bbox.rs +115 -0
- rustigc_py-0.0.3/rustigc/src/score/cache/closing.rs +316 -0
- rustigc_py-0.0.3/rustigc/src/score/cache/furthest.rs +431 -0
- rustigc_py-0.0.3/rustigc/src/score/cache/mod.rs +73 -0
- rustigc_py-0.0.3/rustigc/src/score/engine.rs +640 -0
- rustigc_py-0.0.3/rustigc/src/score/mod.rs +60 -0
- rustigc_py-0.0.3/rustigc/src/score/rules/cfd.rs +100 -0
- rustigc_py-0.0.3/rustigc/src/score/rules/crazy.rs +59 -0
- rustigc_py-0.0.3/rustigc/src/score/rules/misc.rs +119 -0
- rustigc_py-0.0.3/rustigc/src/score/rules/mod.rs +340 -0
- rustigc_py-0.0.3/rustigc/src/score/rules/xcontest.rs +113 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/balanced.rs +92 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/circuit.rs +109 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/closed.rs +55 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/common.rs +112 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/margin.rs +50 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/mod.rs +81 -0
- rustigc_py-0.0.3/rustigc/src/score/shapes/polyline.rs +116 -0
- rustigc_py-0.0.3/rustigc/src/utils/export.rs +400 -0
- rustigc_py-0.0.3/rustigc/src/utils/geometry.rs +433 -0
- rustigc_py-0.0.3/rustigc/src/utils/iter.rs +12 -0
- rustigc_py-0.0.3/rustigc/src/utils/mod.rs +11 -0
- rustigc_py-0.0.3/rustigc/src/utils/projector.rs +144 -0
- rustigc_py-0.0.3/rustigc/tests/export.rs +117 -0
- rustigc_py-0.0.3/rustigc/tests/parsing.rs +97 -0
- rustigc_py-0.0.3/rustigc/tests/scoring.rs +123 -0
- rustigc_py-0.0.3/rustigc-py/.pypirc +3 -0
- rustigc_py-0.0.3/rustigc-py/Cargo.toml +22 -0
- rustigc_py-0.0.3/rustigc-py/LICENSE +280 -0
- rustigc_py-0.0.3/rustigc-py/README.md +70 -0
- rustigc_py-0.0.3/rustigc-py/src/lib.rs +338 -0
- rustigc_py-0.0.3/rustigc-py/tests/conftest.py +15 -0
- rustigc_py-0.0.3/rustigc-py/tests/test_bindings.py +89 -0
- rustigc_py-0.0.3/rustigc-py/tests/test_export.py +87 -0
- rustigc_py-0.0.3/rustigc-py/tests/test_log.py +128 -0
- rustigc_py-0.0.3/rustigc-py/tests/test_score.py +61 -0
- rustigc_py-0.0.3/rustigc-py/tests/test_scorer.py +54 -0
- rustigc_py-0.0.3/rustigc-py/tests/test_track.py +100 -0
- rustigc_py-0.0.3/rustigc-test-data/Cargo.toml +12 -0
- rustigc_py-0.0.3/rustigc-test-data/README.md +12 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-01.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-01.igc +31086 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-01.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-02.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-02.igc +41078 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-02.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-03.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-03.igc +13075 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-03.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-04.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-04.igc +6730 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-04.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-05.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-05.igc +20595 -0
- rustigc_py-0.0.3/rustigc-test-data/real/fai-05.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-01.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-01.igc +6943 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-01.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-02.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-02.igc +14270 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-02.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-03.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-03.igc +12901 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-03.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-04.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-04.igc +3958 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-04.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-05.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-05.igc +39488 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-05.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-06.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-06.igc +1111 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-06.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-07.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-07.igc +478 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-07.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-08.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-08.igc +1103 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-08.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-09.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-09.igc +697 -0
- rustigc_py-0.0.3/rustigc-test-data/real/free-09.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-antimeridian.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-antimeridian.igc +4844 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-antimeridian.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-detect-cadence.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-detect-cadence.igc +672 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-detect-cadence.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-duplicate-fixes.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-duplicate-fixes.igc +5235 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-duplicate-fixes.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-fai-limit.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-fai-limit.igc +6768 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-fai-limit.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-small-gap.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-small-gap.igc +40683 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-small-gap.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-time-gaps.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-time-gaps.igc +3184 -0
- rustigc_py-0.0.3/rustigc-test-data/real/problem-time-gaps.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-01.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-01.igc +4658 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-01.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-02.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-02.igc +4872 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-02.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-03.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-03.igc +4549 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-03.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-04.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-04.igc +4217 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-04.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-05.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-05.igc +19541 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-05.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-06.cfd.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-06.igc +23996 -0
- rustigc_py-0.0.3/rustigc-test-data/real/triangle-06.xcontest.json +21 -0
- rustigc_py-0.0.3/rustigc-test-data/src/lib.rs +57 -0
- rustigc_py-0.0.3/rustigc-test-data/ugly/another-endline.igc +13583 -0
- rustigc_py-0.0.3/rustigc-test-data/ugly/bad-char-task.igc +3598 -0
- rustigc_py-0.0.3/rustigc-test-data/ugly/change-length-fix.igc +11780 -0
- rustigc_py-0.0.3/rustigc-test-data/ugly/possible-crlf.igc +20269 -0
|
@@ -0,0 +1,1367 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "accurate"
|
|
7
|
+
version = "0.3.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "4f209f0bc218ee6cf50db56ec0d9fe10b3cbfb6f3900d019b36c8fdb6d3bc03e"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"ieee754",
|
|
13
|
+
"num-traits",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "aho-corasick"
|
|
18
|
+
version = "1.1.5"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"memchr",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "alloca"
|
|
27
|
+
version = "0.4.0"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"cc",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "anes"
|
|
36
|
+
version = "0.1.6"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "anstream"
|
|
42
|
+
version = "1.0.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"anstyle",
|
|
47
|
+
"anstyle-parse",
|
|
48
|
+
"anstyle-query",
|
|
49
|
+
"anstyle-wincon",
|
|
50
|
+
"colorchoice",
|
|
51
|
+
"is_terminal_polyfill",
|
|
52
|
+
"utf8parse",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anstyle"
|
|
57
|
+
version = "1.0.14"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anstyle-parse"
|
|
63
|
+
version = "1.0.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"utf8parse",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anstyle-query"
|
|
72
|
+
version = "1.1.5"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"windows-sys",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle-wincon"
|
|
81
|
+
version = "3.0.11"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"anstyle",
|
|
86
|
+
"once_cell_polyfill",
|
|
87
|
+
"windows-sys",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "autocfg"
|
|
92
|
+
version = "1.5.1"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "bitflags"
|
|
98
|
+
version = "1.3.2"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "btoi"
|
|
104
|
+
version = "0.5.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "3b5ab9db53bcda568284df0fd39f6eac24ad6f7ba7ff1168b9e76eba6576b976"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"num-traits",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bumpalo"
|
|
113
|
+
version = "3.20.3"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "byteorder"
|
|
119
|
+
version = "1.5.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "cast"
|
|
125
|
+
version = "0.3.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "cc"
|
|
131
|
+
version = "1.4.4"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"find-msvc-tools",
|
|
136
|
+
"shlex",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "cfg-if"
|
|
141
|
+
version = "1.0.4"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "ciborium"
|
|
147
|
+
version = "0.2.2"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"ciborium-io",
|
|
152
|
+
"ciborium-ll",
|
|
153
|
+
"serde",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "ciborium-io"
|
|
158
|
+
version = "0.2.2"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "ciborium-ll"
|
|
164
|
+
version = "0.2.2"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"ciborium-io",
|
|
169
|
+
"half",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "clap"
|
|
174
|
+
version = "4.6.6"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"clap_builder",
|
|
179
|
+
"clap_derive",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "clap_builder"
|
|
184
|
+
version = "4.6.6"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"anstream",
|
|
189
|
+
"anstyle",
|
|
190
|
+
"clap_lex",
|
|
191
|
+
"strsim",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "clap_derive"
|
|
196
|
+
version = "4.6.4"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"heck",
|
|
201
|
+
"proc-macro2",
|
|
202
|
+
"quote",
|
|
203
|
+
"syn 3.0.4",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "clap_lex"
|
|
208
|
+
version = "1.1.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "colorchoice"
|
|
214
|
+
version = "1.0.5"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "convert_case"
|
|
220
|
+
version = "0.10.0"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"unicode-segmentation",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "criterion"
|
|
229
|
+
version = "0.8.2"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"alloca",
|
|
234
|
+
"anes",
|
|
235
|
+
"cast",
|
|
236
|
+
"ciborium",
|
|
237
|
+
"clap",
|
|
238
|
+
"criterion-plot",
|
|
239
|
+
"itertools",
|
|
240
|
+
"num-traits",
|
|
241
|
+
"oorandom",
|
|
242
|
+
"page_size",
|
|
243
|
+
"plotters",
|
|
244
|
+
"rayon",
|
|
245
|
+
"regex",
|
|
246
|
+
"serde",
|
|
247
|
+
"serde_json",
|
|
248
|
+
"tinytemplate",
|
|
249
|
+
"walkdir",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "criterion-plot"
|
|
254
|
+
version = "0.8.2"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"cast",
|
|
259
|
+
"itertools",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "crossbeam-deque"
|
|
264
|
+
version = "0.8.7"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"crossbeam-epoch",
|
|
269
|
+
"crossbeam-utils",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "crossbeam-epoch"
|
|
274
|
+
version = "0.9.20"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"crossbeam-utils",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "crossbeam-utils"
|
|
283
|
+
version = "0.8.22"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "crunchy"
|
|
289
|
+
version = "0.2.4"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "defmt"
|
|
295
|
+
version = "1.1.1"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"bitflags",
|
|
300
|
+
"defmt-macros",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "defmt-macros"
|
|
305
|
+
version = "1.1.1"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"defmt-parser",
|
|
310
|
+
"proc-macro2",
|
|
311
|
+
"quote",
|
|
312
|
+
"syn 2.0.119",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "defmt-parser"
|
|
317
|
+
version = "1.0.0"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"thiserror",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "derive_more"
|
|
326
|
+
version = "2.1.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"derive_more-impl",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "derive_more-impl"
|
|
335
|
+
version = "2.1.1"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"convert_case",
|
|
340
|
+
"proc-macro2",
|
|
341
|
+
"quote",
|
|
342
|
+
"rustc_version",
|
|
343
|
+
"syn 2.0.119",
|
|
344
|
+
"unicode-xid",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "diff"
|
|
349
|
+
version = "0.1.13"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "either"
|
|
355
|
+
version = "1.18.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "env_filter"
|
|
361
|
+
version = "2.0.0"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"log",
|
|
366
|
+
"regex",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "env_logger"
|
|
371
|
+
version = "0.11.11"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"anstream",
|
|
376
|
+
"anstyle",
|
|
377
|
+
"env_filter",
|
|
378
|
+
"jiff",
|
|
379
|
+
"log",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "find-msvc-tools"
|
|
384
|
+
version = "0.1.11"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "futures-core"
|
|
390
|
+
version = "0.3.34"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "futures-task"
|
|
396
|
+
version = "0.3.34"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "futures-util"
|
|
402
|
+
version = "0.3.34"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"futures-core",
|
|
407
|
+
"futures-task",
|
|
408
|
+
"pin-project-lite",
|
|
409
|
+
"slab",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "geographiclib-rs"
|
|
414
|
+
version = "0.2.7"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "c5a7f08910fd98737a6eda7568e7c5e645093e073328eeef49758cfe8b0489c7"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"accurate",
|
|
419
|
+
"libm",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "geojson"
|
|
424
|
+
version = "1.0.0"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "510c094bfc76ea34d02eee00833254945b70491d79a9c0b050abed6eaa799ffb"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"log",
|
|
429
|
+
"serde",
|
|
430
|
+
"serde_json",
|
|
431
|
+
"thiserror",
|
|
432
|
+
"tinyvec",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "half"
|
|
437
|
+
version = "2.7.1"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"cfg-if",
|
|
442
|
+
"crunchy",
|
|
443
|
+
"zerocopy",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "hash32"
|
|
448
|
+
version = "0.3.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"byteorder",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "heapless"
|
|
457
|
+
version = "0.8.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"hash32",
|
|
462
|
+
"stable_deref_trait",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "heck"
|
|
467
|
+
version = "0.5.0"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "ieee754"
|
|
473
|
+
version = "0.2.6"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "include_bytes_aligned"
|
|
479
|
+
version = "0.2.0"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "fb3f0fd7913f9257b6862075640a029db0fff0887a3f49e00059f52b7111cf11"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "is_terminal_polyfill"
|
|
485
|
+
version = "1.70.2"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "itertools"
|
|
491
|
+
version = "0.13.0"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"either",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "itoa"
|
|
500
|
+
version = "1.0.18"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "jiff"
|
|
506
|
+
version = "0.2.35"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"defmt",
|
|
511
|
+
"jiff-core",
|
|
512
|
+
"jiff-static",
|
|
513
|
+
"jiff-tzdb-platform",
|
|
514
|
+
"log",
|
|
515
|
+
"portable-atomic",
|
|
516
|
+
"portable-atomic-util",
|
|
517
|
+
"serde_core",
|
|
518
|
+
"windows-link",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "jiff-core"
|
|
523
|
+
version = "0.1.0"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"defmt",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "jiff-static"
|
|
532
|
+
version = "0.2.35"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"jiff-core",
|
|
537
|
+
"proc-macro2",
|
|
538
|
+
"quote",
|
|
539
|
+
"syn 2.0.119",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "jiff-tzdb"
|
|
544
|
+
version = "0.1.8"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "jiff-tzdb-platform"
|
|
550
|
+
version = "0.1.3"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"jiff-tzdb",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "js-sys"
|
|
559
|
+
version = "0.3.104"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"cfg-if",
|
|
564
|
+
"futures-util",
|
|
565
|
+
"wasm-bindgen",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "libc"
|
|
570
|
+
version = "0.2.189"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "libm"
|
|
576
|
+
version = "0.2.16"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "log"
|
|
582
|
+
version = "0.4.34"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "matrixmultiply"
|
|
588
|
+
version = "0.3.11"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"autocfg",
|
|
593
|
+
"rawpointer",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "memchr"
|
|
598
|
+
version = "2.8.3"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "ndarray"
|
|
604
|
+
version = "0.17.2"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"matrixmultiply",
|
|
609
|
+
"num-complex",
|
|
610
|
+
"num-integer",
|
|
611
|
+
"num-traits",
|
|
612
|
+
"portable-atomic",
|
|
613
|
+
"portable-atomic-util",
|
|
614
|
+
"rawpointer",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "num-complex"
|
|
619
|
+
version = "0.4.6"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"num-traits",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "num-integer"
|
|
628
|
+
version = "0.1.47"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"num-traits",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "num-traits"
|
|
637
|
+
version = "0.2.19"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"autocfg",
|
|
642
|
+
"libm",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "numpy"
|
|
647
|
+
version = "0.29.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"libc",
|
|
652
|
+
"ndarray",
|
|
653
|
+
"num-complex",
|
|
654
|
+
"num-integer",
|
|
655
|
+
"num-traits",
|
|
656
|
+
"pyo3",
|
|
657
|
+
"pyo3-build-config",
|
|
658
|
+
"rustc-hash",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "once_cell"
|
|
663
|
+
version = "1.21.4"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "once_cell_polyfill"
|
|
669
|
+
version = "1.70.2"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "oorandom"
|
|
675
|
+
version = "11.1.5"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "page_size"
|
|
681
|
+
version = "0.6.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"libc",
|
|
686
|
+
"winapi",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "pin-project-lite"
|
|
691
|
+
version = "0.2.17"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "plotters"
|
|
697
|
+
version = "0.3.7"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"num-traits",
|
|
702
|
+
"plotters-backend",
|
|
703
|
+
"plotters-svg",
|
|
704
|
+
"wasm-bindgen",
|
|
705
|
+
"web-sys",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "plotters-backend"
|
|
710
|
+
version = "0.3.7"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "plotters-svg"
|
|
716
|
+
version = "0.3.7"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"plotters-backend",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "portable-atomic"
|
|
725
|
+
version = "1.15.0"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "portable-atomic-util"
|
|
731
|
+
version = "0.2.7"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"portable-atomic",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "pretty_assertions"
|
|
740
|
+
version = "1.4.1"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"diff",
|
|
745
|
+
"yansi",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "proc-macro2"
|
|
750
|
+
version = "1.0.107"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"unicode-ident",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "pyo3"
|
|
759
|
+
version = "0.29.2"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"libc",
|
|
764
|
+
"once_cell",
|
|
765
|
+
"portable-atomic",
|
|
766
|
+
"pyo3-build-config",
|
|
767
|
+
"pyo3-ffi",
|
|
768
|
+
"pyo3-macros",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "pyo3-build-config"
|
|
773
|
+
version = "0.29.2"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"target-lexicon",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "pyo3-ffi"
|
|
782
|
+
version = "0.29.2"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"libc",
|
|
787
|
+
"pyo3-build-config",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "pyo3-macros"
|
|
792
|
+
version = "0.29.2"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"proc-macro2",
|
|
797
|
+
"pyo3-macros-backend",
|
|
798
|
+
"quote",
|
|
799
|
+
"syn 2.0.119",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "pyo3-macros-backend"
|
|
804
|
+
version = "0.29.2"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"heck",
|
|
809
|
+
"proc-macro2",
|
|
810
|
+
"quote",
|
|
811
|
+
"syn 2.0.119",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "quote"
|
|
816
|
+
version = "1.0.47"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"proc-macro2",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "rawpointer"
|
|
825
|
+
version = "0.2.1"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "rayon"
|
|
831
|
+
version = "1.12.0"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"either",
|
|
836
|
+
"rayon-core",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "rayon-core"
|
|
841
|
+
version = "1.13.0"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"crossbeam-deque",
|
|
846
|
+
"crossbeam-utils",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "regex"
|
|
851
|
+
version = "1.13.1"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"aho-corasick",
|
|
856
|
+
"memchr",
|
|
857
|
+
"regex-automata",
|
|
858
|
+
"regex-syntax",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "regex-automata"
|
|
863
|
+
version = "0.4.18"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"aho-corasick",
|
|
868
|
+
"memchr",
|
|
869
|
+
"regex-syntax",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "regex-syntax"
|
|
874
|
+
version = "0.8.11"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "rstar"
|
|
880
|
+
version = "0.13.0"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "5912b862fa5ffb462607bfd1e35036c458c537921f508c8235a83d5f3987edfe"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"heapless",
|
|
885
|
+
"num-traits",
|
|
886
|
+
"smallvec",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "rustc-hash"
|
|
891
|
+
version = "2.1.3"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "rustc_version"
|
|
897
|
+
version = "0.4.1"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"semver",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "rustigc"
|
|
906
|
+
version = "0.0.3"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"btoi",
|
|
909
|
+
"criterion",
|
|
910
|
+
"geographiclib-rs",
|
|
911
|
+
"geojson",
|
|
912
|
+
"log",
|
|
913
|
+
"num-traits",
|
|
914
|
+
"pretty_assertions",
|
|
915
|
+
"rstar",
|
|
916
|
+
"rustc-hash",
|
|
917
|
+
"rustigc-test-data",
|
|
918
|
+
"serde",
|
|
919
|
+
"serde_json",
|
|
920
|
+
"smallvec",
|
|
921
|
+
"thiserror",
|
|
922
|
+
"winnow",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "rustigc-py"
|
|
927
|
+
version = "0.0.3"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"numpy",
|
|
930
|
+
"pyo3",
|
|
931
|
+
"rustigc",
|
|
932
|
+
"serde_json",
|
|
933
|
+
]
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "rustigc-test-data"
|
|
937
|
+
version = "0.1.0"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "rustigc-tools"
|
|
941
|
+
version = "0.0.3"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"clap",
|
|
944
|
+
"env_logger",
|
|
945
|
+
"jiff",
|
|
946
|
+
"log",
|
|
947
|
+
"rustigc",
|
|
948
|
+
"serde_json",
|
|
949
|
+
"utz",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "rustigc-wasm"
|
|
954
|
+
version = "0.0.3"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"rustigc",
|
|
957
|
+
"serde-wasm-bindgen",
|
|
958
|
+
"serde_json",
|
|
959
|
+
"wasm-bindgen",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "rustversion"
|
|
964
|
+
version = "1.0.23"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "same-file"
|
|
970
|
+
version = "1.0.6"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"winapi-util",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "scroll"
|
|
979
|
+
version = "0.13.0"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "c1257cd4248b4132760d6524d6dda4e053bc648c9070b960929bf50cfb1e7add"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"scroll_derive",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "scroll_derive"
|
|
988
|
+
version = "0.13.1"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"proc-macro2",
|
|
993
|
+
"quote",
|
|
994
|
+
"syn 2.0.119",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "semver"
|
|
999
|
+
version = "1.0.28"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "serde"
|
|
1005
|
+
version = "1.0.229"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"serde_core",
|
|
1010
|
+
"serde_derive",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "serde-wasm-bindgen"
|
|
1015
|
+
version = "0.6.5"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"js-sys",
|
|
1020
|
+
"serde",
|
|
1021
|
+
"wasm-bindgen",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "serde_core"
|
|
1026
|
+
version = "1.0.229"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"serde_derive",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "serde_derive"
|
|
1035
|
+
version = "1.0.229"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"proc-macro2",
|
|
1040
|
+
"quote",
|
|
1041
|
+
"syn 3.0.4",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "serde_json"
|
|
1046
|
+
version = "1.0.151"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"itoa",
|
|
1051
|
+
"memchr",
|
|
1052
|
+
"serde",
|
|
1053
|
+
"serde_core",
|
|
1054
|
+
"zmij",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "shlex"
|
|
1059
|
+
version = "2.0.1"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "slab"
|
|
1065
|
+
version = "0.4.12"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "smallvec"
|
|
1071
|
+
version = "1.15.2"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "stable_deref_trait"
|
|
1077
|
+
version = "1.2.1"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "strsim"
|
|
1083
|
+
version = "0.11.1"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "syn"
|
|
1089
|
+
version = "2.0.119"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"proc-macro2",
|
|
1094
|
+
"quote",
|
|
1095
|
+
"unicode-ident",
|
|
1096
|
+
]
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "syn"
|
|
1100
|
+
version = "3.0.4"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"proc-macro2",
|
|
1105
|
+
"quote",
|
|
1106
|
+
"unicode-ident",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "target-lexicon"
|
|
1111
|
+
version = "0.13.5"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "thiserror"
|
|
1117
|
+
version = "2.0.20"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"thiserror-impl",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "thiserror-impl"
|
|
1126
|
+
version = "2.0.20"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"proc-macro2",
|
|
1131
|
+
"quote",
|
|
1132
|
+
"syn 3.0.4",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "tinytemplate"
|
|
1137
|
+
version = "1.2.1"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"serde",
|
|
1142
|
+
"serde_json",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "tinyvec"
|
|
1147
|
+
version = "1.12.0"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"serde_core",
|
|
1152
|
+
"tinyvec_macros",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "tinyvec_macros"
|
|
1157
|
+
version = "0.1.1"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "unicode-ident"
|
|
1163
|
+
version = "1.0.24"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "unicode-segmentation"
|
|
1169
|
+
version = "1.13.3"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "unicode-xid"
|
|
1175
|
+
version = "0.2.6"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "utf8parse"
|
|
1181
|
+
version = "0.2.2"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "utz"
|
|
1187
|
+
version = "0.4.1+2026c"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "2db24656901b855311b36926a0aaa8d07b5b9808ede80b7829b6ecb795d1348f"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"derive_more",
|
|
1192
|
+
"include_bytes_aligned",
|
|
1193
|
+
"scroll",
|
|
1194
|
+
"utz_common",
|
|
1195
|
+
"utz_data_tiny_static",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "utz_common"
|
|
1200
|
+
version = "0.4.0+2026c"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "eb36564de85b6b0ab6fd89dabf15e7e63b7341258858d63fa3b33b33e443ffd4"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"scroll",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "utz_data_tiny_static"
|
|
1209
|
+
version = "0.4.0+2026c"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "5fa0056784421fe060452af7ef3c9c22bb0bdcdee0c39bc25ff00808a825c56a"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"include_bytes_aligned",
|
|
1214
|
+
"utz_common",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "walkdir"
|
|
1219
|
+
version = "2.5.0"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"same-file",
|
|
1224
|
+
"winapi-util",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "wasm-bindgen"
|
|
1229
|
+
version = "0.2.127"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"cfg-if",
|
|
1234
|
+
"once_cell",
|
|
1235
|
+
"rustversion",
|
|
1236
|
+
"wasm-bindgen-macro",
|
|
1237
|
+
"wasm-bindgen-shared",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "wasm-bindgen-macro"
|
|
1242
|
+
version = "0.2.127"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"quote",
|
|
1247
|
+
"wasm-bindgen-macro-support",
|
|
1248
|
+
]
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "wasm-bindgen-macro-support"
|
|
1252
|
+
version = "0.2.127"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1255
|
+
dependencies = [
|
|
1256
|
+
"bumpalo",
|
|
1257
|
+
"proc-macro2",
|
|
1258
|
+
"quote",
|
|
1259
|
+
"syn 2.0.119",
|
|
1260
|
+
"wasm-bindgen-shared",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "wasm-bindgen-shared"
|
|
1265
|
+
version = "0.2.127"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1268
|
+
dependencies = [
|
|
1269
|
+
"unicode-ident",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "web-sys"
|
|
1274
|
+
version = "0.3.104"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"js-sys",
|
|
1279
|
+
"wasm-bindgen",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "winapi"
|
|
1284
|
+
version = "0.3.9"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"winapi-i686-pc-windows-gnu",
|
|
1289
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1294
|
+
version = "0.4.0"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "winapi-util"
|
|
1300
|
+
version = "0.1.11"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"windows-sys",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1309
|
+
version = "0.4.0"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "windows-link"
|
|
1315
|
+
version = "0.2.1"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1318
|
+
|
|
1319
|
+
[[package]]
|
|
1320
|
+
name = "windows-sys"
|
|
1321
|
+
version = "0.61.2"
|
|
1322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1324
|
+
dependencies = [
|
|
1325
|
+
"windows-link",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "winnow"
|
|
1330
|
+
version = "1.0.4"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"memchr",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "yansi"
|
|
1339
|
+
version = "1.0.1"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "zerocopy"
|
|
1345
|
+
version = "0.8.56"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"zerocopy-derive",
|
|
1350
|
+
]
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "zerocopy-derive"
|
|
1354
|
+
version = "0.8.56"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"proc-macro2",
|
|
1359
|
+
"quote",
|
|
1360
|
+
"syn 2.0.119",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "zmij"
|
|
1365
|
+
version = "1.0.23"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|