mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +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
|
||||
|
||||
[dependencies]
|
||||
syn = { version = "1", features = ["full"] }
|
||||
quote = "1"
|
||||
proc-macro2 = "1"
|
||||
syn = { version = "1.0.69", features = ["full"] }
|
||||
quote = "1.0.9"
|
||||
proc-macro2 = "1.0.26"
|
||||
heck = "0.3.0"
|
||||
proc-macro-error = "1"
|
||||
|
||||
|
|
|
@ -9,13 +9,7 @@
|
|||
|
||||
#![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")]
|
||||
#![deny(
|
||||
missing_docs,
|
||||
trivial_casts,
|
||||
unused_import_braces,
|
||||
unused_allocation,
|
||||
trivial_numeric_casts
|
||||
)]
|
||||
#![deny(missing_docs, trivial_casts, unused_allocation, trivial_numeric_casts)]
|
||||
#![forbid(unsafe_code)]
|
||||
#![allow(clippy::needless_doctest_main)]
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
missing_debug_implementations,
|
||||
missing_copy_implementations,
|
||||
trivial_casts,
|
||||
unused_import_braces,
|
||||
unused_allocation,
|
||||
trivial_numeric_casts
|
||||
)]
|
||||
|
|
Loading…
Reference in a new issue