diff options
| author | Fuwn <[email protected]> | 2024-04-01 05:46:31 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-01 05:46:31 +0000 |
| commit | 59428adda8b1a5c4cc2c1bb9fa2a44120131ffab (patch) | |
| tree | 9da272ac1e8655e7a210eff5975ab3234cd5de90 | |
| parent | fix(clippy): lints (diff) | |
| download | windmark-59428adda8b1a5c4cc2c1bb9fa2a44120131ffab.tar.xz windmark-59428adda8b1a5c4cc2c1bb9fa2a44120131ffab.zip | |
build(rustc): update toolchain
| -rw-r--r-- | rust-toolchain.toml | 2 | ||||
| -rw-r--r-- | src/router.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 864d3c4..87d6531 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "1.68.2" +channel = "1.77.1" diff --git a/src/router.rs b/src/router.rs index 0c69d2e..e99caa8 100644 --- a/src/router.rs +++ b/src/router.rs @@ -765,7 +765,7 @@ impl Router { /// ``` pub fn attach_async( &mut self, - mut module: impl AsyncModule + 'static + Send, + mut module: impl AsyncModule + 'static, ) -> &mut Self { block!({ module.on_attach(self).await; |