Skip to content

Commit

Permalink
Update to rust 1.68 πŸ¦€πŸ¦€πŸ¦€ (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored Mar 10, 2023
1 parent 756a570 commit 1a9730f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.67"
channel = "1.68"
components = [ "rustfmt", "clippy" ]
targets = [ "aarch64-unknown-linux-gnu" ]
1 change: 0 additions & 1 deletion shotover-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ itertools.workspace = true
rand = "0.8.4"
rand_distr = "0.4.1"
cached = "0.42"
pin-project-lite = "0.2"
tokio-openssl.workspace = true
openssl.workspace = true
async-recursion = "1.0"
Expand Down
1 change: 0 additions & 1 deletion shotover-proxy/src/transforms/throttling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ impl Transform for RequestThrottling {
// extract throttled messages from the message_wrapper
#[allow(clippy::needless_collect)]
let throttled_messages: Vec<(Message, usize)> = (0..message_wrapper.messages.len())
.into_iter()
.rev()
.filter_map(|i| {
if self
Expand Down

0 comments on commit 1a9730f

Please sign in to comment.