From 3591a3b3e0bf4e7a726655629dabc4362c635314 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 27 Jan 2025 18:03:42 +0100 Subject: [PATCH] fixes --- cryptovec/Cargo.toml | 2 +- pageant/Cargo.toml | 2 +- russh-config/Cargo.toml | 2 +- russh-util/Cargo.toml | 2 +- russh/Cargo.toml | 2 +- russh/src/auth.rs | 1 + 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/cryptovec/Cargo.toml b/cryptovec/Cargo.toml index 5d919665..5ee6f509 100644 --- a/cryptovec/Cargo.toml +++ b/cryptovec/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" name = "russh-cryptovec" repository = "https://github.com/warp-tech/russh" version = "0.48.0" -rust-version = "1.60" +rust-version = "1.75" [dependencies] libc = "0.2" diff --git a/pageant/Cargo.toml b/pageant/Cargo.toml index 12c2510e..2eab0565 100644 --- a/pageant/Cargo.toml +++ b/pageant/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" name = "pageant" repository = "https://github.com/warp-tech/russh" version = "0.0.2" -rust-version = "1.65" +rust-version = "1.75" [dependencies] futures.workspace = true diff --git a/russh-config/Cargo.toml b/russh-config/Cargo.toml index 04aa2eb6..e68a3722 100644 --- a/russh-config/Cargo.toml +++ b/russh-config/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "russh-config" repository = "https://github.com/warp-tech/russh" version = "0.48.0" -rust-version = "1.65" +rust-version = "1.75" [dependencies] home.workspace = true diff --git a/russh-util/Cargo.toml b/russh-util/Cargo.toml index f746fc41..757606a2 100644 --- a/russh-util/Cargo.toml +++ b/russh-util/Cargo.toml @@ -2,7 +2,7 @@ name = "russh-util" version = "0.48.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.75" description = "Runtime abstraction utilities for russh." documentation = "https://docs.rs/russh-util" homepage = "https://github.com/warp-tech/russh" diff --git a/russh/Cargo.toml b/russh/Cargo.toml index 73080582..49b644a5 100644 --- a/russh/Cargo.toml +++ b/russh/Cargo.toml @@ -10,7 +10,7 @@ name = "russh" readme = "../README.md" repository = "https://github.com/warp-tech/russh" version = "0.50.0-beta.11" -rust-version = "1.65" +rust-version = "1.75" [features] default = ["flate2"] diff --git a/russh/src/auth.rs b/russh/src/auth.rs index 018d740c..9636b1e9 100644 --- a/russh/src/auth.rs +++ b/russh/src/auth.rs @@ -173,6 +173,7 @@ impl Signer { type Error = AgentAuthError; + #[allow(clippy::manual_async_fn)] fn auth_publickey_sign( &mut self, key: &ssh_key::PublicKey,