mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 23:02:31 +00:00
Specify dep patch versions
This commit is contained in:
parent
9be6db5999
commit
3c9cc0cf91
3 changed files with 4 additions and 11 deletions
|
@ -36,9 +36,9 @@ proc-macro = true
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { version = "1", features = ["full"] }
|
syn = { version = "1.0.69", features = ["full"] }
|
||||||
quote = "1"
|
quote = "1.0.9"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1.0.26"
|
||||||
heck = "0.3.0"
|
heck = "0.3.0"
|
||||||
proc-macro-error = "1"
|
proc-macro-error = "1"
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,7 @@
|
||||||
|
|
||||||
#![doc(html_logo_url = "https://clap.rs/images/media/clap.png")]
|
#![doc(html_logo_url = "https://clap.rs/images/media/clap.png")]
|
||||||
#![doc(html_root_url = "https://docs.rs/clap_generate/3.0.0-beta.2")]
|
#![doc(html_root_url = "https://docs.rs/clap_generate/3.0.0-beta.2")]
|
||||||
#![deny(
|
#![deny(missing_docs, trivial_casts, unused_allocation, trivial_numeric_casts)]
|
||||||
missing_docs,
|
|
||||||
trivial_casts,
|
|
||||||
unused_import_braces,
|
|
||||||
unused_allocation,
|
|
||||||
trivial_numeric_casts
|
|
||||||
)]
|
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
#![allow(clippy::needless_doctest_main)]
|
#![allow(clippy::needless_doctest_main)]
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_copy_implementations,
|
missing_copy_implementations,
|
||||||
trivial_casts,
|
trivial_casts,
|
||||||
unused_import_braces,
|
|
||||||
unused_allocation,
|
unused_allocation,
|
||||||
trivial_numeric_casts
|
trivial_numeric_casts
|
||||||
)]
|
)]
|
||||||
|
|
Loading…
Reference in a new issue