File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2323
2424## Breaking Changes
2525
26+ * #1399 Bump MSRV to 1.51.
2627* #1399 Thread support is now required on all platforms.
2728* #1135 The "no_metrics" anti-feature has been replaced with
2829 the "metrics" positive feature.
5152 doesn't make sense for things that must fit in memory anyway.
5253* #1314 ` Subscriber::next_timeout ` now requires a mutable self
5354 reference.
54- * #1337 Bump MSRV to 1.48.
5555* #1349 The "measure_allocs" feature has been removed.
5656* #1354 ` Error ` has been modified to be Copy, removing all
5757 heap-allocated variants.
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ extreme::run(async move {
161161
162162# minimum supported Rust version (MSRV)
163163
164- We support Rust 1.48 .0 and up.
164+ We support Rust 1.51 .0 and up.
165165
166166# architecture
167167
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ rustup update --no-self-update
1212
1313RUSTFLAGS=" --cfg miri" cargo check
1414
15- rustup toolchain install 1.48 .0 --no-self-update
15+ rustup toolchain install 1.51 .0 --no-self-update
1616cargo clean
1717rm Cargo.lock
18- cargo +1.48 .0 check
18+ cargo +1.51 .0 check
1919
2020for target in $targets ; do
2121 echo " setting up $target ..."
You can’t perform that action at this time.
0 commit comments