diff --git a/russh-keys/Cargo.toml b/russh-keys/Cargo.toml index bf32f5c9..10206cb0 100644 --- a/russh-keys/Cargo.toml +++ b/russh-keys/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["ssh"] license = "Apache-2.0" name = "russh-keys" repository = "https://github.com/warp-tech/russh" -version = "0.46.0-beta.3" +version = "0.46.0" rust-version = "1.65" [dependencies] @@ -43,7 +43,7 @@ rand = { workspace = true } rand_core = { version = "0.6.4", features = ["std"] } rsa = "0.9" russh-cryptovec = { version = "0.7.0", path = "../cryptovec" } -russh-util = { version = "0.1.0", path = "../russh-util" } +russh-util = { version = "0.46.0", path = "../russh-util" } sec1 = { version = "0.7", features = ["pkcs8"] } serde = { version = "1.0", features = ["derive"] } sha1 = { workspace = true } diff --git a/russh-util/Cargo.toml b/russh-util/Cargo.toml index a409480f..d4d3f212 100644 --- a/russh-util/Cargo.toml +++ b/russh-util/Cargo.toml @@ -1,8 +1,13 @@ [package] name = "russh-util" -version = "0.1.0" +version = "0.46.0" edition = "2021" rust-version = "1.65" +description = "Runtime abstraction utilities for russh." +documentation = "https://docs.rs/russh-util" +homepage = "https://github.com/warp-tech/russh" +license = "Apache-2.0" +repository = "https://github.com/warp-tech/russh" [dependencies] chrono = "0.4.38" diff --git a/russh/Cargo.toml b/russh/Cargo.toml index 7a02e754..7ff2ed92 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.46.0-beta.4" +version = "0.46.0" rust-version = "1.65" [features] @@ -45,14 +45,14 @@ poly1305 = "0.8" rand = { workspace = true } rand_core = { version = "0.6.4", features = ["getrandom"] } russh-cryptovec = { version = "0.7.0", path = "../cryptovec" } -russh-keys = { version = "0.46.0-beta.2", path = "../russh-keys" } +russh-keys = { version = "0.46.0", path = "../russh-keys" } sha1 = { workspace = true } sha2 = { workspace = true } ssh-encoding = { workspace = true } ssh-key = { workspace = true } subtle = "2.4" thiserror = { workspace = true } -russh-util = { path = "../russh-util" } +russh-util = { version = "0.46.0", path = "../russh-util" } des = "0.8.1" tokio = { workspace = true, features = ["io-util", "sync", "time"] }