rustforge-rl 0.1.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.
- rustforge_rl-0.1.0/Cargo.lock +1707 -0
- rustforge_rl-0.1.0/Cargo.toml +35 -0
- rustforge_rl-0.1.0/LICENSE-APACHE +202 -0
- rustforge_rl-0.1.0/LICENSE-MIT +21 -0
- rustforge_rl-0.1.0/PKG-INFO +93 -0
- rustforge_rl-0.1.0/README.md +57 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/Cargo.toml +24 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/backward.rs +125 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/grad_mode.rs +52 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/graph/export.rs +108 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/graph.rs +751 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/lib.rs +59 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/ops/conv.rs +215 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/ops/mod.rs +839 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/optimizer/adam.rs +187 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/optimizer/mod.rs +52 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/optimizer/rmsprop.rs +295 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/optimizer/sgd.rs +159 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/src/variable.rs +459 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/tests/dhat_hotpath.rs +161 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/tests/grad_mode.rs +88 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/tests/gradient_check.rs +543 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/tests/test_autograd_exhaustive.rs +1035 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/tests/test_gradient_stress.proptest-regressions +7 -0
- rustforge_rl-0.1.0/crates/rustforge-autograd/tests/test_gradient_stress.rs +417 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/Cargo.toml +21 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/activation.rs +226 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/conv2d.rs +91 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/dropout.rs +160 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/lib.rs +71 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/linear.rs +226 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/loss.rs +241 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/module.rs +65 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/noisy_linear.rs +206 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/normalization.rs +154 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/sequential.rs +163 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/src/serialization.rs +420 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/tests/test_nn_edge_cases.rs +507 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/tests/test_nn_exhaustive.rs +889 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/tests/test_regression.rs +137 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/tests/test_training_integration.rs +635 -0
- rustforge_rl-0.1.0/crates/rustforge-nn/tests/test_xor.rs +97 -0
- rustforge_rl-0.1.0/crates/rustforge-python/Cargo.toml +27 -0
- rustforge_rl-0.1.0/crates/rustforge-python/LICENSE-APACHE +202 -0
- rustforge_rl-0.1.0/crates/rustforge-python/LICENSE-MIT +21 -0
- rustforge_rl-0.1.0/crates/rustforge-python/README.md +57 -0
- rustforge_rl-0.1.0/crates/rustforge-python/src/agent.rs +115 -0
- rustforge_rl-0.1.0/crates/rustforge-python/src/env.rs +216 -0
- rustforge_rl-0.1.0/crates/rustforge-python/src/lib.rs +26 -0
- rustforge_rl-0.1.0/crates/rustforge-python/src/space.rs +65 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_agent_dqn.py +39 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_end_to_end.py +36 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_env_cartpole.py +54 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_env_continuous.py +42 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_env_gridworld.py +27 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_env_mountaincar.py +25 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_gym_bridge.py +52 -0
- rustforge_rl-0.1.0/crates/rustforge-python/tests/test_smoke.py +5 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/Cargo.toml +28 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/examples/dqn_cartpole.rs +31 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/a2c.rs +603 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/a2c_runtime.rs +465 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/dqn.rs +590 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/dqn_runtime.rs +585 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/dqn_train.rs +48 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/epsilon_greedy.rs +171 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/gaussian_policy.rs +529 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/live_runtime.rs +259 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/mod.rs +40 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/on_policy_runtime.rs +120 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/ppo.rs +958 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/ppo_runtime.rs +456 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/reinforce.rs +455 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/reinforce_runtime.rs +417 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/returns.rs +406 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/sac.rs +475 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/schedule.rs +217 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/td3.rs +525 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/agent/utils.rs +329 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/buffer/mod.rs +17 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/buffer/per.rs +241 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/buffer/replay.rs +649 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/buffer/rollout.rs +791 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/buffer/sum_tree.rs +150 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/cartpole.rs +260 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/gridworld.rs +234 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/mod.rs +35 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/mountain_car.rs +654 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/pendulum.rs +218 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/spaces.rs +145 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/traits.rs +137 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/vector.rs +346 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/env/wrappers.rs +151 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/lib.rs +33 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/metrics.rs +254 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/runtime/control.rs +322 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/runtime/event.rs +223 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/runtime/mod.rs +7 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/runtime/persistence.rs +617 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/runtime/progress.rs +99 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/runtime/trainer.rs +269 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/src/training.rs +46 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/a2c_convergence.rs +125 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/a2c_runtime.rs +545 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/csv_v1_compat.rs +196 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/dqn_convergence.rs +312 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/dqn_per_integration.rs +334 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/dqn_runtime.rs +296 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/generic_jsonl_v1.rs +378 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/metrics.rs +98 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/metrics_stress.rs +163 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/ppo_convergence.rs +125 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/ppo_runtime.rs +747 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/reinforce_convergence.rs +83 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/reinforce_runtime.rs +635 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/run_artifacts.rs +160 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/runtime_control.rs +81 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/runtime_event.rs +97 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/runtime_persistence.rs +37 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/runtime_progress.rs +28 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_dqn_training_smoke.rs +187 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_env_cartpole.rs +363 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_env_gridworld.rs +218 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_env_pendulum.rs +232 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_env_spaces.rs +183 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_env_vector.rs +305 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_env_wrappers.rs +197 -0
- rustforge_rl-0.1.0/crates/rustforge-rl/tests/test_gridworld_dqn.rs +21 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/Cargo.toml +21 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/display.rs +128 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/error.rs +115 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/lib.rs +35 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/ops.rs +641 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/random.rs +229 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/shape.rs +235 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/src/tensor.rs +1049 -0
- rustforge_rl-0.1.0/crates/rustforge-tensor/tests/test_tensor_exhaustive.rs +1668 -0
- rustforge_rl-0.1.0/pyproject.toml +50 -0
- rustforge_rl-0.1.0/python/rustforge/__init__.py +30 -0
- rustforge_rl-0.1.0/python/rustforge/_core.pyi +59 -0
- rustforge_rl-0.1.0/python/rustforge/gym.py +79 -0
- rustforge_rl-0.1.0/python/rustforge/py.typed +0 -0
|
@@ -0,0 +1,1707 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstream"
|
|
28
|
+
version = "1.0.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"anstyle",
|
|
33
|
+
"anstyle-parse",
|
|
34
|
+
"anstyle-query",
|
|
35
|
+
"anstyle-wincon",
|
|
36
|
+
"colorchoice",
|
|
37
|
+
"is_terminal_polyfill",
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle"
|
|
43
|
+
version = "1.0.14"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "anstyle-parse"
|
|
49
|
+
version = "1.0.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"utf8parse",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-query"
|
|
58
|
+
version = "1.1.5"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"windows-sys 0.61.2",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-wincon"
|
|
67
|
+
version = "3.0.11"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"anstyle",
|
|
72
|
+
"once_cell_polyfill",
|
|
73
|
+
"windows-sys 0.61.2",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "anyhow"
|
|
78
|
+
version = "1.0.102"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "approx"
|
|
84
|
+
version = "0.5.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"num-traits",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "autocfg"
|
|
93
|
+
version = "1.5.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "backtrace"
|
|
99
|
+
version = "0.3.76"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"addr2line",
|
|
104
|
+
"cfg-if",
|
|
105
|
+
"libc",
|
|
106
|
+
"miniz_oxide",
|
|
107
|
+
"object",
|
|
108
|
+
"rustc-demangle",
|
|
109
|
+
"windows-link 0.2.1",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "bincode"
|
|
114
|
+
version = "1.3.3"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"serde",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "bit-set"
|
|
123
|
+
version = "0.8.0"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"bit-vec",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bit-vec"
|
|
132
|
+
version = "0.8.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bitflags"
|
|
138
|
+
version = "2.11.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "cassowary"
|
|
144
|
+
version = "0.3.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "castaway"
|
|
150
|
+
version = "0.2.4"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"rustversion",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "cfg-if"
|
|
159
|
+
version = "1.0.4"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "clap"
|
|
165
|
+
version = "4.5.61"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "52fa72306bb30daf11bc97773431628e5b4916e97aaa74b7d3f625d4d495da02"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"clap_builder",
|
|
170
|
+
"clap_derive",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "clap_builder"
|
|
175
|
+
version = "4.5.61"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "2071365c5c56eae7d77414029dde2f4f4ba151cf68d5a3261c9a40de428ace93"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"anstream",
|
|
180
|
+
"anstyle",
|
|
181
|
+
"clap_lex",
|
|
182
|
+
"strsim",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "clap_derive"
|
|
187
|
+
version = "4.5.61"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "dec5be1eea072311774b7b84ded287adbd9f293f9d23456817605c6042f4f5e0"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"heck",
|
|
192
|
+
"proc-macro2",
|
|
193
|
+
"quote",
|
|
194
|
+
"syn",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "clap_lex"
|
|
199
|
+
version = "1.0.1"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "0e78417baa3b3114dc0e95e7357389a249c4da97c3c2b540700079db6171bfd7"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "colorchoice"
|
|
205
|
+
version = "1.0.5"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "compact_str"
|
|
211
|
+
version = "0.8.2"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"castaway",
|
|
216
|
+
"cfg-if",
|
|
217
|
+
"itoa",
|
|
218
|
+
"rustversion",
|
|
219
|
+
"ryu",
|
|
220
|
+
"static_assertions",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "crossbeam-channel"
|
|
225
|
+
version = "0.5.16"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"crossbeam-utils",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "crossbeam-utils"
|
|
234
|
+
version = "0.8.22"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "crossterm"
|
|
240
|
+
version = "0.28.1"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"bitflags",
|
|
245
|
+
"crossterm_winapi",
|
|
246
|
+
"futures-core",
|
|
247
|
+
"mio",
|
|
248
|
+
"parking_lot",
|
|
249
|
+
"rustix 0.38.44",
|
|
250
|
+
"signal-hook",
|
|
251
|
+
"signal-hook-mio",
|
|
252
|
+
"winapi",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "crossterm_winapi"
|
|
257
|
+
version = "0.9.1"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"winapi",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "darling"
|
|
266
|
+
version = "0.20.11"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"darling_core",
|
|
271
|
+
"darling_macro",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "darling_core"
|
|
276
|
+
version = "0.20.11"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"fnv",
|
|
281
|
+
"ident_case",
|
|
282
|
+
"proc-macro2",
|
|
283
|
+
"quote",
|
|
284
|
+
"strsim",
|
|
285
|
+
"syn",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "darling_macro"
|
|
290
|
+
version = "0.20.11"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"darling_core",
|
|
295
|
+
"quote",
|
|
296
|
+
"syn",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "dhat"
|
|
301
|
+
version = "0.3.3"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "98cd11d84628e233de0ce467de10b8633f4ddaecafadefc86e13b84b8739b827"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"backtrace",
|
|
306
|
+
"lazy_static",
|
|
307
|
+
"mintex",
|
|
308
|
+
"parking_lot",
|
|
309
|
+
"rustc-hash",
|
|
310
|
+
"serde",
|
|
311
|
+
"serde_json",
|
|
312
|
+
"thousands",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "either"
|
|
317
|
+
version = "1.16.0"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "equivalent"
|
|
323
|
+
version = "1.0.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "errno"
|
|
329
|
+
version = "0.3.14"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"libc",
|
|
334
|
+
"windows-sys 0.59.0",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "fastrand"
|
|
339
|
+
version = "2.4.1"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "fnv"
|
|
345
|
+
version = "1.0.7"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "foldhash"
|
|
351
|
+
version = "0.1.5"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "futures-core"
|
|
357
|
+
version = "0.3.32"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "futures-macro"
|
|
363
|
+
version = "0.3.32"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"proc-macro2",
|
|
368
|
+
"quote",
|
|
369
|
+
"syn",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "futures-task"
|
|
374
|
+
version = "0.3.32"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "futures-util"
|
|
380
|
+
version = "0.3.32"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"futures-core",
|
|
385
|
+
"futures-macro",
|
|
386
|
+
"futures-task",
|
|
387
|
+
"pin-project-lite",
|
|
388
|
+
"slab",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "getrandom"
|
|
393
|
+
version = "0.2.17"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"cfg-if",
|
|
398
|
+
"libc",
|
|
399
|
+
"wasi",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "getrandom"
|
|
404
|
+
version = "0.3.4"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"cfg-if",
|
|
409
|
+
"libc",
|
|
410
|
+
"r-efi",
|
|
411
|
+
"wasip2",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "gimli"
|
|
416
|
+
version = "0.32.3"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "hashbrown"
|
|
422
|
+
version = "0.15.5"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"allocator-api2",
|
|
427
|
+
"equivalent",
|
|
428
|
+
"foldhash",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "heck"
|
|
433
|
+
version = "0.5.0"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "ident_case"
|
|
439
|
+
version = "1.0.1"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "indoc"
|
|
445
|
+
version = "2.0.7"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"rustversion",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "instability"
|
|
454
|
+
version = "0.3.10"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "6778b0196eefee7df739db78758e5cf9b37412268bfa5650bfeed028aed20d9c"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"darling",
|
|
459
|
+
"indoc",
|
|
460
|
+
"proc-macro2",
|
|
461
|
+
"quote",
|
|
462
|
+
"syn",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "is_terminal_polyfill"
|
|
467
|
+
version = "1.70.2"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "itertools"
|
|
473
|
+
version = "0.13.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"either",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "itoa"
|
|
482
|
+
version = "1.0.18"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "lazy_static"
|
|
488
|
+
version = "1.5.0"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "libc"
|
|
494
|
+
version = "0.2.184"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "libm"
|
|
500
|
+
version = "0.2.16"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "linux-raw-sys"
|
|
506
|
+
version = "0.4.15"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "linux-raw-sys"
|
|
512
|
+
version = "0.12.1"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "lock_api"
|
|
518
|
+
version = "0.4.14"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"scopeguard",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "log"
|
|
527
|
+
version = "0.4.29"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "lru"
|
|
533
|
+
version = "0.12.5"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"hashbrown",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "matrixmultiply"
|
|
542
|
+
version = "0.3.10"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"autocfg",
|
|
547
|
+
"rawpointer",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "memchr"
|
|
552
|
+
version = "2.8.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "memoffset"
|
|
558
|
+
version = "0.9.1"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"autocfg",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "miniz_oxide"
|
|
567
|
+
version = "0.8.9"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"adler2",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "mintex"
|
|
576
|
+
version = "0.1.4"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "mio"
|
|
582
|
+
version = "1.2.1"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"libc",
|
|
587
|
+
"log",
|
|
588
|
+
"wasi",
|
|
589
|
+
"windows-sys 0.61.2",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "ndarray"
|
|
594
|
+
version = "0.16.1"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"matrixmultiply",
|
|
599
|
+
"num-complex",
|
|
600
|
+
"num-integer",
|
|
601
|
+
"num-traits",
|
|
602
|
+
"portable-atomic",
|
|
603
|
+
"portable-atomic-util",
|
|
604
|
+
"rawpointer",
|
|
605
|
+
"serde",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "ndarray-rand"
|
|
610
|
+
version = "0.15.0"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "f093b3db6fd194718dcdeea6bd8c829417deae904e3fcc7732dabcd4416d25d8"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"ndarray",
|
|
615
|
+
"rand 0.8.5",
|
|
616
|
+
"rand_distr",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "ntapi"
|
|
621
|
+
version = "0.4.3"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"winapi",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "num-complex"
|
|
630
|
+
version = "0.4.6"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"num-traits",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "num-integer"
|
|
639
|
+
version = "0.1.46"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"num-traits",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "num-traits"
|
|
648
|
+
version = "0.2.19"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"autocfg",
|
|
653
|
+
"libm",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "objc2-core-foundation"
|
|
658
|
+
version = "0.3.2"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"bitflags",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "objc2-io-kit"
|
|
667
|
+
version = "0.3.2"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"libc",
|
|
672
|
+
"objc2-core-foundation",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "object"
|
|
677
|
+
version = "0.37.3"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"memchr",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "once_cell"
|
|
686
|
+
version = "1.21.4"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "once_cell_polyfill"
|
|
692
|
+
version = "1.70.2"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "parking_lot"
|
|
698
|
+
version = "0.12.5"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"lock_api",
|
|
703
|
+
"parking_lot_core",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "parking_lot_core"
|
|
708
|
+
version = "0.9.12"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"cfg-if",
|
|
713
|
+
"libc",
|
|
714
|
+
"redox_syscall",
|
|
715
|
+
"smallvec",
|
|
716
|
+
"windows-link 0.2.1",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "paste"
|
|
721
|
+
version = "1.0.15"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "pin-project-lite"
|
|
727
|
+
version = "0.2.17"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "portable-atomic"
|
|
733
|
+
version = "1.13.1"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "portable-atomic-util"
|
|
739
|
+
version = "0.2.6"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"portable-atomic",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "ppv-lite86"
|
|
748
|
+
version = "0.2.21"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"zerocopy",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "proc-macro2"
|
|
757
|
+
version = "1.0.106"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"unicode-ident",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "proptest"
|
|
766
|
+
version = "1.8.0"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"bit-set",
|
|
771
|
+
"bit-vec",
|
|
772
|
+
"bitflags",
|
|
773
|
+
"lazy_static",
|
|
774
|
+
"num-traits",
|
|
775
|
+
"rand 0.9.4",
|
|
776
|
+
"rand_chacha 0.9.0",
|
|
777
|
+
"rand_xorshift",
|
|
778
|
+
"regex-syntax",
|
|
779
|
+
"rusty-fork",
|
|
780
|
+
"tempfile",
|
|
781
|
+
"unarray",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "pyo3"
|
|
786
|
+
version = "0.25.1"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"indoc",
|
|
791
|
+
"libc",
|
|
792
|
+
"memoffset",
|
|
793
|
+
"once_cell",
|
|
794
|
+
"portable-atomic",
|
|
795
|
+
"pyo3-build-config",
|
|
796
|
+
"pyo3-ffi",
|
|
797
|
+
"pyo3-macros",
|
|
798
|
+
"unindent",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "pyo3-build-config"
|
|
803
|
+
version = "0.25.1"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"once_cell",
|
|
808
|
+
"target-lexicon",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "pyo3-ffi"
|
|
813
|
+
version = "0.25.1"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"libc",
|
|
818
|
+
"pyo3-build-config",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "pyo3-macros"
|
|
823
|
+
version = "0.25.1"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"proc-macro2",
|
|
828
|
+
"pyo3-macros-backend",
|
|
829
|
+
"quote",
|
|
830
|
+
"syn",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "pyo3-macros-backend"
|
|
835
|
+
version = "0.25.1"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"heck",
|
|
840
|
+
"proc-macro2",
|
|
841
|
+
"pyo3-build-config",
|
|
842
|
+
"quote",
|
|
843
|
+
"syn",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "quick-error"
|
|
848
|
+
version = "1.2.3"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "quote"
|
|
854
|
+
version = "1.0.45"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"proc-macro2",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "r-efi"
|
|
863
|
+
version = "5.3.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "rand"
|
|
869
|
+
version = "0.8.5"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"libc",
|
|
874
|
+
"rand_chacha 0.3.1",
|
|
875
|
+
"rand_core 0.6.4",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "rand"
|
|
880
|
+
version = "0.9.4"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"rand_chacha 0.9.0",
|
|
885
|
+
"rand_core 0.9.5",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "rand_chacha"
|
|
890
|
+
version = "0.3.1"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"ppv-lite86",
|
|
895
|
+
"rand_core 0.6.4",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "rand_chacha"
|
|
900
|
+
version = "0.9.0"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"ppv-lite86",
|
|
905
|
+
"rand_core 0.9.5",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "rand_core"
|
|
910
|
+
version = "0.6.4"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"getrandom 0.2.17",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "rand_core"
|
|
919
|
+
version = "0.9.5"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"getrandom 0.3.4",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "rand_distr"
|
|
928
|
+
version = "0.4.3"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"num-traits",
|
|
933
|
+
"rand 0.8.5",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "rand_xorshift"
|
|
938
|
+
version = "0.4.0"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"rand_core 0.9.5",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "ratatui"
|
|
947
|
+
version = "0.29.0"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"bitflags",
|
|
952
|
+
"cassowary",
|
|
953
|
+
"compact_str",
|
|
954
|
+
"crossterm",
|
|
955
|
+
"indoc",
|
|
956
|
+
"instability",
|
|
957
|
+
"itertools",
|
|
958
|
+
"lru",
|
|
959
|
+
"paste",
|
|
960
|
+
"strum",
|
|
961
|
+
"unicode-segmentation",
|
|
962
|
+
"unicode-truncate",
|
|
963
|
+
"unicode-width 0.2.0",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "rawpointer"
|
|
968
|
+
version = "0.2.1"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "redox_syscall"
|
|
974
|
+
version = "0.5.18"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"bitflags",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "regex-syntax"
|
|
983
|
+
version = "0.8.10"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "rustc-demangle"
|
|
989
|
+
version = "0.1.27"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "rustc-hash"
|
|
995
|
+
version = "1.1.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "rustforge-autograd"
|
|
1001
|
+
version = "0.1.0"
|
|
1002
|
+
dependencies = [
|
|
1003
|
+
"approx",
|
|
1004
|
+
"dhat",
|
|
1005
|
+
"ndarray",
|
|
1006
|
+
"proptest",
|
|
1007
|
+
"rustforge-tensor",
|
|
1008
|
+
"serde",
|
|
1009
|
+
"smallvec",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "rustforge-cli"
|
|
1014
|
+
version = "0.1.0"
|
|
1015
|
+
dependencies = [
|
|
1016
|
+
"anyhow",
|
|
1017
|
+
"clap",
|
|
1018
|
+
"rustforge-autograd",
|
|
1019
|
+
"rustforge-nn",
|
|
1020
|
+
"rustforge-rl",
|
|
1021
|
+
"rustforge-tensor",
|
|
1022
|
+
"rustforge-tui",
|
|
1023
|
+
"tokio",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "rustforge-nn"
|
|
1028
|
+
version = "0.1.0"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"approx",
|
|
1031
|
+
"bincode",
|
|
1032
|
+
"ndarray",
|
|
1033
|
+
"rand 0.8.5",
|
|
1034
|
+
"rustforge-autograd",
|
|
1035
|
+
"rustforge-tensor",
|
|
1036
|
+
"serde",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "rustforge-python"
|
|
1041
|
+
version = "0.1.0"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"pyo3",
|
|
1044
|
+
"rustforge-rl",
|
|
1045
|
+
"rustforge-tensor",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "rustforge-rl"
|
|
1050
|
+
version = "0.1.0"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"approx",
|
|
1053
|
+
"crossbeam-channel",
|
|
1054
|
+
"ndarray",
|
|
1055
|
+
"proptest",
|
|
1056
|
+
"rand 0.8.5",
|
|
1057
|
+
"rand_distr",
|
|
1058
|
+
"rustforge-autograd",
|
|
1059
|
+
"rustforge-nn",
|
|
1060
|
+
"rustforge-tensor",
|
|
1061
|
+
"serde",
|
|
1062
|
+
"serde_json",
|
|
1063
|
+
"smallvec",
|
|
1064
|
+
"tempfile",
|
|
1065
|
+
"tracing",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "rustforge-tensor"
|
|
1070
|
+
version = "0.1.0"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"approx",
|
|
1073
|
+
"ndarray",
|
|
1074
|
+
"ndarray-rand",
|
|
1075
|
+
"proptest",
|
|
1076
|
+
"rand 0.8.5",
|
|
1077
|
+
"rand_distr",
|
|
1078
|
+
"serde",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "rustforge-tui"
|
|
1083
|
+
version = "0.1.0"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"anyhow",
|
|
1086
|
+
"crossbeam-channel",
|
|
1087
|
+
"crossterm",
|
|
1088
|
+
"futures-util",
|
|
1089
|
+
"instability",
|
|
1090
|
+
"ratatui",
|
|
1091
|
+
"rustforge-rl",
|
|
1092
|
+
"serde",
|
|
1093
|
+
"sysinfo",
|
|
1094
|
+
"tokio",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "rustix"
|
|
1099
|
+
version = "0.38.44"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"bitflags",
|
|
1104
|
+
"errno",
|
|
1105
|
+
"libc",
|
|
1106
|
+
"linux-raw-sys 0.4.15",
|
|
1107
|
+
"windows-sys 0.59.0",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "rustix"
|
|
1112
|
+
version = "1.1.4"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"bitflags",
|
|
1117
|
+
"errno",
|
|
1118
|
+
"libc",
|
|
1119
|
+
"linux-raw-sys 0.12.1",
|
|
1120
|
+
"windows-sys 0.59.0",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "rustversion"
|
|
1125
|
+
version = "1.0.22"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "rusty-fork"
|
|
1131
|
+
version = "0.3.1"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"fnv",
|
|
1136
|
+
"quick-error",
|
|
1137
|
+
"tempfile",
|
|
1138
|
+
"wait-timeout",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "ryu"
|
|
1143
|
+
version = "1.0.23"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "scopeguard"
|
|
1149
|
+
version = "1.2.0"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "serde"
|
|
1155
|
+
version = "1.0.228"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"serde_core",
|
|
1160
|
+
"serde_derive",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "serde_core"
|
|
1165
|
+
version = "1.0.228"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"serde_derive",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "serde_derive"
|
|
1174
|
+
version = "1.0.228"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"proc-macro2",
|
|
1179
|
+
"quote",
|
|
1180
|
+
"syn",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "serde_json"
|
|
1185
|
+
version = "1.0.149"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1188
|
+
dependencies = [
|
|
1189
|
+
"itoa",
|
|
1190
|
+
"memchr",
|
|
1191
|
+
"serde",
|
|
1192
|
+
"serde_core",
|
|
1193
|
+
"zmij",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "signal-hook"
|
|
1198
|
+
version = "0.3.18"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"libc",
|
|
1203
|
+
"signal-hook-registry",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "signal-hook-mio"
|
|
1208
|
+
version = "0.2.5"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"libc",
|
|
1213
|
+
"mio",
|
|
1214
|
+
"signal-hook",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "signal-hook-registry"
|
|
1219
|
+
version = "1.4.8"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"errno",
|
|
1224
|
+
"libc",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "slab"
|
|
1229
|
+
version = "0.4.12"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "smallvec"
|
|
1235
|
+
version = "1.15.1"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "static_assertions"
|
|
1241
|
+
version = "1.1.0"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "strsim"
|
|
1247
|
+
version = "0.11.1"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "strum"
|
|
1253
|
+
version = "0.26.3"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"strum_macros",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "strum_macros"
|
|
1262
|
+
version = "0.26.4"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"heck",
|
|
1267
|
+
"proc-macro2",
|
|
1268
|
+
"quote",
|
|
1269
|
+
"rustversion",
|
|
1270
|
+
"syn",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "syn"
|
|
1275
|
+
version = "2.0.117"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1278
|
+
dependencies = [
|
|
1279
|
+
"proc-macro2",
|
|
1280
|
+
"quote",
|
|
1281
|
+
"unicode-ident",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "sysinfo"
|
|
1286
|
+
version = "0.35.2"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "3c3ffa3e4ff2b324a57f7aeb3c349656c7b127c3c189520251a648102a92496e"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"libc",
|
|
1291
|
+
"memchr",
|
|
1292
|
+
"ntapi",
|
|
1293
|
+
"objc2-core-foundation",
|
|
1294
|
+
"objc2-io-kit",
|
|
1295
|
+
"windows",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "target-lexicon"
|
|
1300
|
+
version = "0.13.5"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "tempfile"
|
|
1306
|
+
version = "3.27.0"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"fastrand",
|
|
1311
|
+
"getrandom 0.3.4",
|
|
1312
|
+
"once_cell",
|
|
1313
|
+
"rustix 1.1.4",
|
|
1314
|
+
"windows-sys 0.59.0",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "thousands"
|
|
1319
|
+
version = "0.2.0"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "tokio"
|
|
1325
|
+
version = "1.52.3"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"libc",
|
|
1330
|
+
"mio",
|
|
1331
|
+
"pin-project-lite",
|
|
1332
|
+
"signal-hook-registry",
|
|
1333
|
+
"tokio-macros",
|
|
1334
|
+
"windows-sys 0.61.2",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "tokio-macros"
|
|
1339
|
+
version = "2.7.0"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1342
|
+
dependencies = [
|
|
1343
|
+
"proc-macro2",
|
|
1344
|
+
"quote",
|
|
1345
|
+
"syn",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "tracing"
|
|
1350
|
+
version = "0.1.44"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"pin-project-lite",
|
|
1355
|
+
"tracing-attributes",
|
|
1356
|
+
"tracing-core",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "tracing-attributes"
|
|
1361
|
+
version = "0.1.31"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"proc-macro2",
|
|
1366
|
+
"quote",
|
|
1367
|
+
"syn",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "tracing-core"
|
|
1372
|
+
version = "0.1.36"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"once_cell",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "unarray"
|
|
1381
|
+
version = "0.1.4"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "unicode-ident"
|
|
1387
|
+
version = "1.0.24"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "unicode-segmentation"
|
|
1393
|
+
version = "1.12.0"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "unicode-truncate"
|
|
1399
|
+
version = "1.1.0"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"itertools",
|
|
1404
|
+
"unicode-segmentation",
|
|
1405
|
+
"unicode-width 0.1.14",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "unicode-width"
|
|
1410
|
+
version = "0.1.14"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "unicode-width"
|
|
1416
|
+
version = "0.2.0"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
1419
|
+
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "unindent"
|
|
1422
|
+
version = "0.2.4"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "utf8parse"
|
|
1428
|
+
version = "0.2.2"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "wait-timeout"
|
|
1434
|
+
version = "0.2.1"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"libc",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "wasi"
|
|
1443
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "wasip2"
|
|
1449
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"wit-bindgen",
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "winapi"
|
|
1458
|
+
version = "0.3.9"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"winapi-i686-pc-windows-gnu",
|
|
1463
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1468
|
+
version = "0.4.0"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1474
|
+
version = "0.4.0"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "windows"
|
|
1480
|
+
version = "0.61.3"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"windows-collections",
|
|
1485
|
+
"windows-core",
|
|
1486
|
+
"windows-future",
|
|
1487
|
+
"windows-link 0.1.3",
|
|
1488
|
+
"windows-numerics",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "windows-collections"
|
|
1493
|
+
version = "0.2.0"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"windows-core",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "windows-core"
|
|
1502
|
+
version = "0.61.2"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"windows-implement",
|
|
1507
|
+
"windows-interface",
|
|
1508
|
+
"windows-link 0.1.3",
|
|
1509
|
+
"windows-result",
|
|
1510
|
+
"windows-strings",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "windows-future"
|
|
1515
|
+
version = "0.2.1"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"windows-core",
|
|
1520
|
+
"windows-link 0.1.3",
|
|
1521
|
+
"windows-threading",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "windows-implement"
|
|
1526
|
+
version = "0.60.2"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1529
|
+
dependencies = [
|
|
1530
|
+
"proc-macro2",
|
|
1531
|
+
"quote",
|
|
1532
|
+
"syn",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "windows-interface"
|
|
1537
|
+
version = "0.59.3"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"proc-macro2",
|
|
1542
|
+
"quote",
|
|
1543
|
+
"syn",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "windows-link"
|
|
1548
|
+
version = "0.1.3"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "windows-link"
|
|
1554
|
+
version = "0.2.1"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "windows-numerics"
|
|
1560
|
+
version = "0.2.0"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"windows-core",
|
|
1565
|
+
"windows-link 0.1.3",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "windows-result"
|
|
1570
|
+
version = "0.3.4"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"windows-link 0.1.3",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "windows-strings"
|
|
1579
|
+
version = "0.4.2"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"windows-link 0.1.3",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "windows-sys"
|
|
1588
|
+
version = "0.59.0"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"windows-targets",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "windows-sys"
|
|
1597
|
+
version = "0.61.2"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"windows-link 0.2.1",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "windows-targets"
|
|
1606
|
+
version = "0.52.6"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1609
|
+
dependencies = [
|
|
1610
|
+
"windows_aarch64_gnullvm",
|
|
1611
|
+
"windows_aarch64_msvc",
|
|
1612
|
+
"windows_i686_gnu",
|
|
1613
|
+
"windows_i686_gnullvm",
|
|
1614
|
+
"windows_i686_msvc",
|
|
1615
|
+
"windows_x86_64_gnu",
|
|
1616
|
+
"windows_x86_64_gnullvm",
|
|
1617
|
+
"windows_x86_64_msvc",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "windows-threading"
|
|
1622
|
+
version = "0.1.0"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"windows-link 0.1.3",
|
|
1627
|
+
]
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "windows_aarch64_gnullvm"
|
|
1631
|
+
version = "0.52.6"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "windows_aarch64_msvc"
|
|
1637
|
+
version = "0.52.6"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "windows_i686_gnu"
|
|
1643
|
+
version = "0.52.6"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "windows_i686_gnullvm"
|
|
1649
|
+
version = "0.52.6"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "windows_i686_msvc"
|
|
1655
|
+
version = "0.52.6"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "windows_x86_64_gnu"
|
|
1661
|
+
version = "0.52.6"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "windows_x86_64_gnullvm"
|
|
1667
|
+
version = "0.52.6"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1670
|
+
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "windows_x86_64_msvc"
|
|
1673
|
+
version = "0.52.6"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "wit-bindgen"
|
|
1679
|
+
version = "0.51.0"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "zerocopy"
|
|
1685
|
+
version = "0.8.48"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"zerocopy-derive",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "zerocopy-derive"
|
|
1694
|
+
version = "0.8.48"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"proc-macro2",
|
|
1699
|
+
"quote",
|
|
1700
|
+
"syn",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "zmij"
|
|
1705
|
+
version = "1.0.21"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|