Skip to content

Commit

Permalink
ssh-encoding v0.3.0-pre.1 (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Aug 13, 2024
1 parent 1a5fa6f commit edd56cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion ssh-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rust-version = "1.72"

[dependencies]
cipher = "=0.5.0-pre.6"
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.0", path = "../ssh-encoding" }
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.1", 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.0"
version = "0.3.0-pre.1"
description = """
Pure Rust implementation of SSH data type decoders/encoders as described
in RFC4251
Expand Down
2 changes: 1 addition & 1 deletion ssh-key/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.73"

[dependencies]
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", "digest", "pem"], path = "../ssh-encoding" }
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.1", features = ["base64", "digest", "pem"], 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
2 changes: 1 addition & 1 deletion ssh-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.73"

[dependencies]
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" }
encoding = { package = "ssh-encoding", version = "=0.3.0-pre.1", default-features = false, path = "../ssh-encoding" }
key = { package = "ssh-key", version = "=0.7.0-pre.0", default-features = false, path = "../ssh-key" }

[features]
Expand Down

0 comments on commit edd56cd

Please sign in to comment.