Skip to content

Commit

Permalink
bump dependency versions to get minimal versions to build
Browse files Browse the repository at this point in the history
These dependency versions are the minimum that can actually build. This
allows a tool like `cargo minimal-versions` to verify that the code
compiles even when using the oldest possible dependency versions, but is
also a useful step toward verifying that the crates can be built on
older toolchains.
  • Loading branch information
ericseppanen committed Dec 21, 2024
1 parent 9b3caee commit 17fe12b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resolver = "2"

[workspace.dependencies]
aes = "0.8"
async-trait = "0.1"
async-trait = "0.1.50"
byteorder = "1.4"
bytes = "1.7"
digest = "0.10"
Expand All @@ -21,18 +21,18 @@ hmac = "0.12"
log = "0.4"
rand = "0.8"
rsa = "0.9"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = { version = "0.10", features = ["oid"] }
sha1 = { version = "0.10.5", features = ["oid"] }
sha2 = { version = "0.10.6", features = ["oid"] }
signature = "2.2"
ssh-encoding = { version = "0.2", features = ["bytes"] }
ssh-key = { version = "0.6", features = [
ssh-key = { version = "0.6.3", features = [
"ed25519",
"rsa",
"p256",
"p384",
"p521",
"encryption",
] }
thiserror = "1.0"
tokio = { version = "1.17.0" }
tokio-stream = { version = "0.1", features = ["net", "sync"] }
thiserror = "1.0.30"
tokio = { version = "1.40.0" }
tokio-stream = { version = "0.1.3", features = ["net", "sync"] }
2 changes: 1 addition & 1 deletion cryptovec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ssh-encoding = { workspace = true, optional = true }
winapi = {version = "0.3", features = ["basetsd", "minwindef", "memoryapi"]}

[dev-dependencies]
wasm-bindgen-test = "0.3"
wasm-bindgen-test = "0.3.46"

[features]
ssh-encoding = ["dep:ssh-encoding"]
8 changes: 4 additions & 4 deletions russh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ curve25519-dalek = "4.1.3"
delegate.workspace = true
digest.workspace = true
elliptic-curve = { version = "0.13", features = ["ecdh"] }
flate2 = { version = "1.0", optional = true }
flate2 = { version = "1.0.15", optional = true }
futures.workspace = true
generic-array = "0.14"
hex-literal = "0.4"
hmac.workspace = true
log.workspace = true
num-bigint = { version = "0.4", features = ["rand"] }
num-bigint = { version = "0.4.2", features = ["rand"] }
once_cell = "1.13"
p256 = { version = "0.13", features = ["ecdh"] }
p384 = { version = "0.13", features = ["ecdh"] }
Expand All @@ -61,9 +61,9 @@ des = { version = "0.8.1", optional = true }
tokio = { workspace = true, features = ["io-util", "sync", "time"] }

[dev-dependencies]
anyhow = "1.0"
anyhow = "1.0.4"
env_logger = "0.11"
clap = { version = "3.2", features = ["derive"] }
clap = { version = "3.2.3", features = ["derive"] }
tokio = { version = "1.17.0", features = [
"io-std",
"io-util",
Expand Down

0 comments on commit 17fe12b

Please sign in to comment.