Skip to content

Commit 254079a

Browse files
authored
ssh-encoding v0.3.0-rc.9 (#515)
1 parent 6385410 commit 254079a

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh-cipher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rust-version = "1.85"
2020

2121
[dependencies]
2222
cipher = "0.5"
23-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.8" }
23+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.9" }
2424

2525
# optional dependencies
2626
aead = { version = "0.6.0-rc.10", 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.8"
3+
version = "0.3.0-rc.9"
44
description = "Pure Rust implementation of SSH data type decoders/encoders as described in RFC4251"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"
@@ -31,8 +31,8 @@ alloc = ["base64ct?/alloc", "pem-rfc7468?/alloc", "zeroize?/alloc"]
3131
base64 = ["dep:base64ct"]
3232
bigint = ["alloc", "zeroize", "dep:bigint"]
3333
bytes = ["alloc", "dep:bytes"]
34-
pem = ["base64", "dep:pem-rfc7468"]
3534
derive = ["ssh-derive"]
35+
pem = ["base64", "dep:pem-rfc7468"]
3636

3737
[lints]
3838
workspace = true

ssh-key/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ features = ["zeroize"]
2525

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

ssh-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
cipher = { package = "ssh-cipher", version = "0.3.0-rc.8", default-features = false }
20-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.8", default-features = false }
20+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.9", default-features = false }
2121
key = { package = "ssh-key", version = "0.7.0-rc.8", default-features = false }
2222

2323
[features]

0 commit comments

Comments
 (0)