File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,14 @@ path = "dummy.rs"
99# IMPORTANT: These dependencies should be kept in sync with the ones at
1010# https://github.com/exercism/rust-test-runner/blob/main/local-registry/Cargo.toml
1111#
12+ # Some crates are used by a large number of solutions. For example, when a crate
13+ # is required or already included in the exercise skeleton. For those crates,
14+ # we should *never* drop support for a given major version. We can continue to
15+ # support old and new versions by giving the old ones an alias. The downside is
16+ # an increase in the size of the local registry.
17+ #
1218[dependencies ]
13- anyhow = " 1.0.100"
19+ anyhow = " 1.0.100" # pin
1420arrayvec = " 0.7.6"
1521arr_macro = " 0.2.1"
1622ascii = " 1.1.0"
@@ -84,7 +90,7 @@ pretty_assertions = "1.4.1"
8490proptest = " 1.9.0"
8591quickcheck = " 1.0.3"
8692quickcheck_macros = " 1.1.0"
87- rand = " 0.9.2"
93+ rand = " 0.9.2" # pin
8894rand_chacha = " 0.9.0"
8995rayon = " 1.11.0"
9096regex-lite = " 0.1.8"
@@ -100,7 +106,7 @@ strum_macros = "0.27.2"
100106subslice = " 0.2.3"
101107thiserror = " 2.0.17"
102108threadpool = " 1.8.1"
103- time = " 0.3.44"
109+ time = " 0.3.44" # pin
104110tinyset = " 0.5.2"
105111transpose = " 0.2.3"
106112unicase = " 2.8.1"
You can’t perform that action at this time.
0 commit comments