Skip to content

Commit

Permalink
pin clap version, due to MSRV mis-match
Browse files Browse the repository at this point in the history
  • Loading branch information
ramfox committed Aug 31, 2023
1 parent 848e451 commit 7a1cbe8
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 19 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ debug-assertions = false
opt-level = 3
panic = 'abort'
incremental = false

[patch.crates-io]
clap_lex = { git = "https://github.com/clap-rs/clap", rev = "5047bb40bd74457215e524db2039211d362cc6e9" }
2 changes: 1 addition & 1 deletion iroh-gossip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ once_cell = "1.18.0"
genawaiter = { version = "0.99.1", default-features = false, features = ["futures03"] }

[dev-dependencies]
clap = { version = "4", features = ["derive"] }
clap = { version = "=4.3.24", features = ["derive"] }
iroh-test = { version = "0.6.0-alpha.0", path = "../iroh-test" }
rand_chacha = "0.3.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
4 changes: 2 additions & 2 deletions iroh-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ x509-parser = "0.15"
zeroize = "1.5"

# derper
clap = { version = "4", features = ["derive"], optional = true }
clap = { version = "=4.3.24", features = ["derive"], optional = true }
regex = { version = "1.7.1", optional = true }
rustls-pemfile = { version = "1.0.2", optional = true }
serde_with = { version = "3.3", optional = true }
Expand All @@ -87,7 +87,7 @@ rtnetlink = "0.13.0"
wmi = "0.13"

[dev-dependencies]
clap = { version = "4", features = ["derive"] }
clap = { version = "=4.3.24", features = ["derive"] }
criterion = "0.5.1"
ntest = "0.9"
pretty_assertions = "1.4"
Expand Down
2 changes: 1 addition & 1 deletion iroh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tracing = "0.1"
walkdir = "2"

# CLI
clap = { version = "4", features = ["derive"], optional = true }
clap = { version = "=4.3.24", features = ["derive"], optional = true }
config = { version = "0.13.1", default-features = false, features = ["toml", "preserve_order"], optional = true }
console = { version = "0.15.5", optional = true }
dirs-next = { version = "2.0.0", optional = true }
Expand Down

0 comments on commit 7a1cbe8

Please sign in to comment.