diff options
| author | Fuwn <[email protected]> | 2023-04-17 07:01:52 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-17 07:01:52 +0000 |
| commit | b6242dfe34923b3d01456db380fb0ed460370777 (patch) | |
| tree | 0e1412590461592393dc8a2ea8318ec433bf528f | |
| parent | docs(request): fix async request example (diff) | |
| download | germ-b6242dfe34923b3d01456db380fb0ed460370777.tar.xz germ-b6242dfe34923b3d01456db380fb0ed460370777.zip | |
build(rustc): pull back to stable
| -rw-r--r-- | .github/workflows/check.yaml | 2 | ||||
| -rw-r--r-- | rust-toolchain.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 3a3ba7a..c9336d6 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -23,7 +23,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: 1.68.2 components: rustfmt, clippy override: true diff --git a/rust-toolchain.toml b/rust-toolchain.toml index cc0d902..864d3c4 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2023-04-02" +channel = "1.68.2" |