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:
Benjamin Gilbert 2022-04-19 12:30:39 -04:00
parent 0194568b03
commit d50ab883aa

View file

@ -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 = []