|
1 |
| -#![crate_type= "lib"] |
2 |
| -#![cfg_attr(feature = "nightly", feature(plugin))] |
3 |
| -//#![cfg_attr(feature = "lints", plugin(clippy))] |
4 |
| -//#![cfg_attr(feature = "lints", allow(option_unwrap_used))] |
5 |
| -//#![cfg_attr(feature = "lints", allow(explicit_iter_loop))] |
6 |
| -//#![cfg_attr(feature = "lints", deny(warnings))] |
7 |
| -// Fix until clippy on crates.io is updated to include needless_lifetimes lint |
8 |
| -//#![cfg_attr(feature = "lints", allow(unknown_lints))] |
9 |
| - |
10 | 1 | //! Command Line Argument Parser for Rust
|
11 | 2 | //!
|
12 | 3 | //! It is a simple to use, efficient, and full featured library for parsing command line arguments
|
|
475 | 466 | //! `clap` is licensed under the MIT license. Please read the [LICENSE-MIT](https://raw.githubusercontent.com/kbknapp/clap-rs/master/LICENSE-MIT)
|
476 | 467 | //! file in
|
477 | 468 | //! this repository for more information.
|
478 |
| -//! |
| 469 | +
|
| 470 | +#![crate_type= "lib"] |
| 471 | +#![cfg_attr(feature = "nightly", feature(plugin))] |
| 472 | +//#![cfg_attr(feature = "lints", plugin(clippy))] |
| 473 | +//#![cfg_attr(feature = "lints", allow(option_unwrap_used))] |
| 474 | +//#![cfg_attr(feature = "lints", allow(explicit_iter_loop))] |
| 475 | +//#![cfg_attr(feature = "lints", deny(warnings))] |
| 476 | +// Fix until clippy on crates.io is updated to include needless_lifetimes lint |
| 477 | +//#![cfg_attr(feature = "lints", allow(unknown_lints))] |
| 478 | + |
479 | 479 |
|
480 | 480 | #[cfg(feature = "suggestions")]
|
481 | 481 | extern crate strsim;
|
|
0 commit comments