Bump toolchain version

This commit is contained in:
infrandomness 2022-03-12 22:39:09 +01:00
parent 5ee6278860
commit bb678d6114
No known key found for this signature in database
GPG Key ID: A3E4677DD571699D
4 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@ -3905,11 +3905,11 @@ dependencies = [
[[package]] [[package]]
name = "packed_simd_2" name = "packed_simd_2"
version = "0.3.6" version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71c0c06716cfc81616fa8e22b721ce92fecd594508bc0eb3d04ae3ef35ac10c5" checksum = "defdcfef86dcc44ad208f71d9ff4ce28df6537a4e0d6b0e8e845cb8ca10059a6"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 1.0.0",
"libm 0.1.4", "libm 0.1.4",
] ]

View File

@ -1 +1 @@
nightly-2021-12-19 nightly-2022-03-11

View File

@ -1260,7 +1260,7 @@ impl<'a> Widget for Diary<'a> {
(None, None) => String::new(), (None, None) => String::new(),
} }
}, },
unknown => unreachable!(unknown), unknown => unreachable!("{}", unknown),
}; };
let mut number = Text::new(&value) let mut number = Text::new(&value)

View File

@ -31,7 +31,7 @@ tracing = { version = "0.1", default-features = false }
rand = "0.8" rand = "0.8"
rand_chacha = "0.3" rand_chacha = "0.3"
arr_macro = "0.1.2" arr_macro = "0.1.2"
packed_simd = { package = "packed_simd_2", version = "0.3.5", optional = true } packed_simd = { package = "packed_simd_2", version = "0.3.7", optional = true }
rayon = "1.5" rayon = "1.5"
serde = { version = "1.0.110", features = ["derive"] } serde = { version = "1.0.110", features = ["derive"] }
ron = { version = "0.7", default-features = false } ron = { version = "0.7", default-features = false }