Skip to content

Commit 809712b

Browse files
authored
Publish pre.0 prereleases (#250)
Publishes an initial set of prereleases of the following crates: - `ssh-cipher` v0.3.0-pre.0 - `ssh-encoding` v0.3.0-pre.0 - `ssh-key` v0.7.0-pre.0 - `ssh-protocol` v0.1.0-pre.0
1 parent d52ad0b commit 809712b

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh-cipher/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-cipher"
3-
version = "0.3.0-pre"
3+
version = "0.3.0-pre.0"
44
description = """
55
Pure Rust implementation of SSH symmetric encryption including support for the
66
@@ -20,7 +20,7 @@ rust-version = "1.72"
2020

2121
[dependencies]
2222
cipher = "=0.5.0-pre.6"
23-
encoding = { package = "ssh-encoding", version = "=0.3.0-pre", path = "../ssh-encoding" }
23+
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.0", path = "../ssh-encoding" }
2424

2525
# optional dependencies
2626
aes = { version = "=0.9.0-pre.1", optional = true, default-features = false }

ssh-encoding/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-encoding"
3-
version = "0.3.0-pre"
3+
version = "0.3.0-pre.0"
44
description = """
55
Pure Rust implementation of SSH data type decoders/encoders as described
66
in RFC4251

ssh-key/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-key"
3-
version = "0.7.0-pre"
3+
version = "0.7.0-pre.0"
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
@@ -18,8 +18,8 @@ edition = "2021"
1818
rust-version = "1.73"
1919

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

ssh-protocol/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-protocol"
3-
version = "0.1.0-pre"
3+
version = "0.1.0-pre.0"
44
description = """
55
Pure Rust implementation of the SSH protocol as described in RFC4251/RFC4253 as well as
66
OpenSSH-specific extensions (WIP)
@@ -16,9 +16,9 @@ edition = "2021"
1616
rust-version = "1.73"
1717

1818
[dependencies]
19-
cipher = { package = "ssh-cipher", version = "=0.3.0-pre", default-features = false, path = "../ssh-cipher" }
20-
encoding = { package = "ssh-encoding", version = "=0.3.0-pre", default-features = false, path = "../ssh-encoding" }
21-
key = { package = "ssh-key", version = "=0.7.0-pre", default-features = false, path = "../ssh-key" }
19+
cipher = { package = "ssh-cipher", version = "=0.3.0-pre.0", default-features = false, path = "../ssh-cipher" }
20+
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.0", default-features = false, path = "../ssh-encoding" }
21+
key = { package = "ssh-key", version = "=0.7.0-pre.0", default-features = false, path = "../ssh-key" }
2222

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

0 commit comments

Comments
 (0)