diff --git a/Cargo.lock b/Cargo.lock index 66a4bd8..a6fe256 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -747,7 +747,7 @@ dependencies = [ [[package]] name = "ssh-encoding" -version = "0.3.0-rc.2" +version = "0.3.0-rc.3" dependencies = [ "base64ct", "bytes", diff --git a/ssh-encoding/Cargo.toml b/ssh-encoding/Cargo.toml index c231159..c59f695 100644 --- a/ssh-encoding/Cargo.toml +++ b/ssh-encoding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssh-encoding" -version = "0.3.0-rc.2" +version = "0.3.0-rc.3" description = """ Pure Rust implementation of SSH data type decoders/encoders as described in RFC4251 diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 4ae230e..429212e 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" [dependencies] cipher = { package = "ssh-cipher", version = "0.3.0-rc.3", features = ["zeroize"] } -encoding = { package = "ssh-encoding", version = "0.3.0-rc.2", features = ["base64", "digest", "pem", "subtle", "zeroize"] } +encoding = { package = "ssh-encoding", version = "0.3.0-rc.3", features = ["base64", "digest", "pem", "subtle", "zeroize"] } sha2 = { version = "0.11.0-rc.3", default-features = false } signature = { version = "3.0.0-rc.5", default-features = false } subtle = { version = "2", default-features = false } diff --git a/ssh-protocol/Cargo.toml b/ssh-protocol/Cargo.toml index 021cc26..9a8c9c9 100644 --- a/ssh-protocol/Cargo.toml +++ b/ssh-protocol/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.85" [dependencies] cipher = { package = "ssh-cipher", version = "0.3.0-rc.3", default-features = false } -encoding = { package = "ssh-encoding", version = "0.3.0-rc.2", default-features = false } +encoding = { package = "ssh-encoding", version = "0.3.0-rc.3", default-features = false } key = { package = "ssh-key", version = "0.7.0-rc.2", default-features = false } [features]