Skip to content

Commit 5846a13

Browse files
committed
Cut new releases
Releases the following: - `ssh-cipher` v0.3.0-rc.6 - `ssh-encoding` v0.3.0-rc.6 - `ssh-key` v0.7.0-rc.7
1 parent 2dd729e commit 5846a13

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh-cipher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-cipher"
3-
version = "0.3.0-rc.5"
3+
version = "0.3.0-rc.6"
44
description = """
55
Pure Rust implementation of SSH symmetric encryption including support for the
66
@@ -20,7 +20,7 @@ rust-version = "1.85"
2020

2121
[dependencies]
2222
cipher = "0.5.0-rc.6"
23-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.4" }
23+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.6" }
2424

2525
# optional dependencies
2626
aead = { version = "0.6.0-rc.8", optional = true, default-features = false }

ssh-encoding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-encoding"
3-
version = "0.3.0-rc.4"
3+
version = "0.3.0-rc.6"
44
description = """
55
Pure Rust implementation of SSH data type decoders/encoders as described
66
in RFC4251
@@ -19,7 +19,7 @@ rust-version = "1.85"
1919
base64ct = { version = "1.8", optional = true }
2020
bigint = { package = "crypto-bigint", version = "0.7.0-rc.22", optional = true, default-features = false, features = ["alloc"] }
2121
bytes = { version = "1", optional = true, default-features = false }
22-
digest = { version = "0.11.0-rc.8", optional = true, default-features = false }
22+
digest = { version = "0.11.0-rc.9", optional = true, default-features = false }
2323
pem-rfc7468 = { version = "1", optional = true }
2424
ssh-derive = { version = "0.3.0-rc.0", optional = true }
2525
subtle = { version = "2", optional = true, default-features = false }

ssh-key/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-key"
3-
version = "0.7.0-rc.6"
3+
version = "0.7.0-rc.7"
44
description = """
55
Pure Rust implementation of SSH key file format decoders/encoders as described
66
in RFC4251/RFC4253 and OpenSSH key formats, as well as "sshsig" signatures and
@@ -19,13 +19,13 @@ rust-version = "1.85"
1919

2020
# ssh-cipher
2121
[dependencies.cipher]
22-
version = "0.3.0-rc.5"
22+
version = "0.3.0-rc.6"
2323
package = "ssh-cipher"
2424
features = ["zeroize"]
2525

2626
# ssh-encoding
2727
[dependencies.encoding]
28-
version = "0.3.0-rc.4"
28+
version = "0.3.0-rc.6"
2929
package = "ssh-encoding"
3030
features = ["base64", "digest", "pem", "subtle", "zeroize"]
3131

@@ -41,7 +41,7 @@ bcrypt-pbkdf = { version = "0.11.0-rc.3", optional = true, default-features = fa
4141
dsa = { version = "0.7.0-rc.11", optional = true, default-features = false, features = ["hazmat"] }
4242
ed25519-dalek = { version = "=3.0.0-pre.5", optional = true, default-features = false }
4343
hex = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
44-
hmac = { version = "0.13.0-rc.3", optional = true }
44+
hmac = { version = "0.13.0-rc.4", optional = true }
4545
p256 = { version = "0.14.0-rc.6", optional = true, default-features = false, features = ["ecdsa"] }
4646
p384 = { version = "0.14.0-rc.6", optional = true, default-features = false, features = ["ecdsa"] }
4747
p521 = { version = "0.14.0-rc.6", optional = true, default-features = false, features = ["ecdsa"] }

ssh-protocol/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ edition = "2024"
1616
rust-version = "1.85"
1717

1818
[dependencies]
19-
cipher = { package = "ssh-cipher", version = "0.3.0-rc.5", default-features = false }
20-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.4", default-features = false }
21-
key = { package = "ssh-key", version = "0.7.0-rc.5", default-features = false }
19+
cipher = { package = "ssh-cipher", version = "0.3.0-rc.6", default-features = false }
20+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.6", default-features = false }
21+
key = { package = "ssh-key", version = "0.7.0-rc.7", default-features = false }
2222

2323
[features]
2424
default = ["std"]

0 commit comments

Comments
 (0)