Skip to content

Commit

Permalink
ssh-key v0.7.0-pre.1 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Aug 13, 2024
1 parent d792fd2 commit fa32427
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 72 deletions.
73 changes: 6 additions & 67 deletions Cargo.lock

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

8 changes: 4 additions & 4 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.0"
version = "0.7.0-pre.1"
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 Down Expand Up @@ -29,7 +29,7 @@ zeroize = { version = "1", default-features = false }
bcrypt-pbkdf = { version = "=0.11.0-pre.1", optional = true, default-features = false, features = ["alloc"] }
bigint = { package = "num-bigint-dig", version = "0.8", optional = true, default-features = false }
dsa = { version = "=0.7.0-pre.0", optional = true, default-features = false }
ed25519-dalek = { version = "=2.2.0-pre", optional = true, default-features = false }
#ed25519-dalek = { version = "=2.2.0-pre", optional = true, default-features = false }
home = { version = "0.5", optional = true }
p256 = { version = "=0.14.0-pre.1", optional = true, default-features = false, features = ["ecdsa"] }
p384 = { version = "=0.14.0-pre.1", optional = true, default-features = false, features = ["ecdsa"] }
Expand Down Expand Up @@ -63,10 +63,10 @@ std = [
"dep:home"
]

crypto = ["ed25519", "p256", "p384", "p521", "rsa"] # NOTE: `dsa` is obsolete/weak
crypto = ["p256", "p384", "p521", "rsa"] # NOTE: `dsa` is obsolete/weak
dsa = ["dep:bigint", "dep:dsa", "dep:sha1", "alloc", "signature/rand_core"]
ecdsa = ["dep:sec1"]
ed25519 = ["dep:ed25519-dalek", "rand_core"]
#ed25519 = ["dep:ed25519-dalek", "rand_core"]
encryption = [
"dep:bcrypt-pbkdf",
"alloc",
Expand Down
2 changes: 1 addition & 1 deletion ssh-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.73"
[dependencies]
cipher = { package = "ssh-cipher", version = "=0.3.0-pre.1", default-features = false, path = "../ssh-cipher" }
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" }
key = { package = "ssh-key", version = "=0.7.0-pre.1", default-features = false, path = "../ssh-key" }

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

0 comments on commit fa32427

Please sign in to comment.