update rust version

This commit is contained in:
Maybe Waffle 2022-12-28 23:16:00 +04:00
parent 1f5b242b36
commit 0253979e36
3 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ env:
# When updating this, also update:
# - crates/teloxide-core/src/codegen.rs
# - rust-toolchain.toml
rust_nightly: nightly-2022-09-23
rust_nightly: nightly-2022-12-23
# When updating this, also update:
# - **/README.md
# - **/src/lib.rs
@ -87,7 +87,7 @@ jobs:
toolchain: beta
features: "--features full"
- rust: nightly
toolchain: nightly-2022-09-23
toolchain: nightly-2022-12-23
features: "--all-features"
- rust: msrv
toolchain: 1.64.0

View file

@ -24,7 +24,7 @@ use xshell::{cmd, Shell};
fn ensure_rustfmt(sh: &Shell) {
// FIXME(waffle): find a better way to set toolchain
let toolchain = "nightly-2022-09-23";
let toolchain = "nightly-2022-12-23";
let version = cmd!(sh, "rustup run {toolchain} rustfmt --version").read().unwrap_or_default();
@ -37,7 +37,7 @@ fn ensure_rustfmt(sh: &Shell) {
}
pub fn reformat(text: String) -> String {
let toolchain = "nightly-2022-09-23";
let toolchain = "nightly-2022-12-23";
let sh = Shell::new().unwrap();
ensure_rustfmt(&sh);

View file

@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2022-09-23"
channel = "nightly-2022-12-23"
components = ["rustfmt", "clippy"]
profile = "minimal"