Skip to content

Commit

Permalink
Publish pre.0 prereleases (#250)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tarcieri authored Jul 28, 2024
1 parent d52ad0b commit 809712b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ssh-cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssh-cipher"
version = "0.3.0-pre"
version = "0.3.0-pre.0"
description = """
Pure Rust implementation of SSH symmetric encryption including support for the
modern aes128-gcm@openssh.com/aes256-gcm@openssh.com and
Expand All @@ -20,7 +20,7 @@ rust-version = "1.72"

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

# optional dependencies
aes = { version = "=0.9.0-pre.1", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion ssh-encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssh-encoding"
version = "0.3.0-pre"
version = "0.3.0-pre.0"
description = """
Pure Rust implementation of SSH data type decoders/encoders as described
in RFC4251
Expand Down
6 changes: 3 additions & 3 deletions ssh-key/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssh-key"
version = "0.7.0-pre"
version = "0.7.0-pre.0"
description = """
Pure Rust implementation of SSH key file format decoders/encoders as described
in RFC4251/RFC4253 and OpenSSH key formats, as well as "sshsig" signatures and
Expand All @@ -18,8 +18,8 @@ edition = "2021"
rust-version = "1.73"

[dependencies]
cipher = { package = "ssh-cipher", version = "=0.3.0-pre", path = "../ssh-cipher" }
encoding = { package = "ssh-encoding", version = "=0.3.0-pre", features = ["base64", "pem", "sha2"], path = "../ssh-encoding" }
cipher = { package = "ssh-cipher", version = "=0.3.0-pre.0", path = "../ssh-cipher" }
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.0", features = ["base64", "pem", "sha2"], path = "../ssh-encoding" }
sha2 = { version = "=0.11.0-pre.4", default-features = false }
signature = { version = "=2.3.0-pre.4", default-features = false }
subtle = { version = "2", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions ssh-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssh-protocol"
version = "0.1.0-pre"
version = "0.1.0-pre.0"
description = """
Pure Rust implementation of the SSH protocol as described in RFC4251/RFC4253 as well as
OpenSSH-specific extensions (WIP)
Expand All @@ -16,9 +16,9 @@ edition = "2021"
rust-version = "1.73"

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

[features]
default = ["std"]
Expand Down

0 comments on commit 809712b

Please sign in to comment.