Skip to content

Commit adeb011

Browse files
authored
ssh-encoding v0.3.0-rc.0 (#364)
1 parent 099509a commit adeb011

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

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.

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,10 @@ members = [
1212
opt-level = 2
1313

1414
[patch.crates-io]
15+
ssh-cipher = { path = "./ssh-cipher" }
16+
ssh-derive = { path = "./ssh-derive" }
17+
ssh-encoding = { path = "./ssh-encoding" }
18+
ssh-key = { path = "./ssh-key" }
19+
1520
# https://github.com/dalek-cryptography/curve25519-dalek/pull/676
1621
ed25519-dalek = { git = "https://github.com/dalek-cryptography/curve25519-dalek.git", branch = "rustcrypto-new-releases" }

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.0-rc.0"
23-
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.1", path = "../ssh-encoding" }
23+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.0" }
2424

2525
# optional dependencies
2626
aead = { version = "0.6.0-rc.1", 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-pre.1"
3+
version = "0.3.0-rc.0"
44
description = """
55
Pure Rust implementation of SSH data type decoders/encoders as described
66
in RFC4251
@@ -21,7 +21,7 @@ bigint = { package = "crypto-bigint", version = "=0.7.0-pre.4", optional = true,
2121
bytes = { version = "1", optional = true, default-features = false }
2222
digest = { version = "0.11.0-rc.0", optional = true, default-features = false }
2323
pem-rfc7468 = { version = "1.0.0-rc.3", optional = true }
24-
ssh-derive = { version = "0.3.0-rc.0", optional = true, path = "../ssh-derive" }
24+
ssh-derive = { version = "0.3.0-rc.0", optional = true }
2525
subtle = { version = "2", optional = true, default-features = false }
2626
zeroize = { version = "1", optional = true, default-features = false }
2727

ssh-key/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ edition = "2024"
1818
rust-version = "1.85"
1919

2020
[dependencies]
21-
cipher = { package = "ssh-cipher", version = "=0.3.0-pre.2", features = ["zeroize"], path = "../ssh-cipher" }
22-
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.1", features = ["base64", "digest", "pem", "subtle", "zeroize"], path = "../ssh-encoding" }
21+
cipher = { package = "ssh-cipher", version = "=0.3.0-pre.2", features = ["zeroize"] }
22+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.0", features = ["base64", "digest", "pem", "subtle", "zeroize"] }
2323
sha2 = { version = "0.11.0-rc.0", default-features = false }
2424
signature = { version = "3.0.0-rc.0", default-features = false }
2525
subtle = { version = "2", default-features = false }

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-pre.2", default-features = false, path = "../ssh-cipher" }
20-
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.1", default-features = false, path = "../ssh-encoding" }
21-
key = { package = "ssh-key", version = "=0.7.0-pre.1", default-features = false, path = "../ssh-key" }
19+
cipher = { package = "ssh-cipher", version = "=0.3.0-pre.2", default-features = false }
20+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.0", default-features = false }
21+
key = { package = "ssh-key", version = "=0.7.0-pre.1", default-features = false }
2222

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

0 commit comments

Comments
 (0)