From ff95994945db593115dd0d663f8c41ecba945b9f Mon Sep 17 00:00:00 2001 From: Eugene Date: Sun, 24 Nov 2024 18:21:24 +0100 Subject: [PATCH] v0.47.0-beta.3 --- russh-keys/src/lib.rs | 4 ++++ russh/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/russh-keys/src/lib.rs b/russh-keys/src/lib.rs index 63ae5c14..00a8e5ce 100644 --- a/russh-keys/src/lib.rs +++ b/russh-keys/src/lib.rs @@ -82,6 +82,10 @@ pub mod helpers; pub use format::*; pub use ssh_key::{self, Algorithm, Certificate, EcdsaCurve, HashAlg, PrivateKey, PublicKey}; +// Reexports +pub use signature; +pub use ssh_encoding; + /// OpenSSH agent protocol implementation pub mod agent; diff --git a/russh/Cargo.toml b/russh/Cargo.toml index b4655646..33f682a4 100644 --- a/russh/Cargo.toml +++ b/russh/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" name = "russh" readme = "../README.md" repository = "https://github.com/warp-tech/russh" -version = "0.47.0-beta.2" +version = "0.47.0-beta.3" rust-version = "1.65" [features]