Skip to content

Commit

Permalink
v0.46.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Nov 3, 2024
1 parent a3ae983 commit e7a9ee9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions russh-keys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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 }
Expand Down
7 changes: 6 additions & 1 deletion russh-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions russh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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"] }

Expand Down

0 comments on commit e7a9ee9

Please sign in to comment.