mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
fix(man): Explicitly depend on clap 3.1.10
Command.build() is not available in 3.1.9.
Fixes: 8f182067e3
("feat(clap): Publicly expose `Command::build`")
This commit is contained in:
parent
0194568b03
commit
d50ab883aa
1 changed files with 2 additions and 2 deletions
|
@ -36,11 +36,11 @@ bench = false
|
|||
|
||||
[dependencies]
|
||||
roff = "0.2.1"
|
||||
clap = { path = "../", version = "3.1", default-features = false, features = ["std", "env"] }
|
||||
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std", "env"] }
|
||||
|
||||
[dev-dependencies]
|
||||
snapbox = { version = "0.2", features = ["diff"] }
|
||||
clap = { path = "../", version = "3.1", default-features = false, features = ["std"] }
|
||||
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std"] }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
Loading…
Reference in a new issue