• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // `clap_complete_fig` is distributed under the terms of both the MIT license and the Apache License
2 // (Version 2.0).
3 // See the [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) files in this repository
4 // for more information.
5 
6 //! Generates [Fig](https://github.com/withfig/autocomplete) completions for [`clap`](https://github.com/clap-rs/clap) based CLIs
7 
8 #![doc(html_logo_url = "https://raw.githubusercontent.com/clap-rs/clap/master/assets/clap.png")]
9 #![warn(missing_docs, trivial_casts, unused_allocation, trivial_numeric_casts)]
10 #![forbid(unsafe_code)]
11 #![allow(clippy::needless_doctest_main)]
12 
13 mod fig;
14 pub use fig::Fig;
15