aboutsummaryrefslogtreecommitdiff
path: root/vendor/clap/src/_cookbook/mod.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/clap/src/_cookbook/mod.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/clap/src/_cookbook/mod.rs')
-rw-r--r--vendor/clap/src/_cookbook/mod.rs61
1 files changed, 0 insertions, 61 deletions
diff --git a/vendor/clap/src/_cookbook/mod.rs b/vendor/clap/src/_cookbook/mod.rs
deleted file mode 100644
index dacb121..0000000
--- a/vendor/clap/src/_cookbook/mod.rs
+++ /dev/null
@@ -1,61 +0,0 @@
-// Contributing
-//
-// New examples:
-// - Building: They must be added to `Cargo.toml` with the appropriate `required-features`.
-// - Testing: Ensure there is a markdown file with [trycmd](https://docs.rs/trycmd) syntax
-// - Link the `.md` file from here
-
-//! # Documentation: Cookbook
-//!
-//! Typed arguments: [derive][typed_derive]
-//! - Topics:
-//! - Custom `parse()`
-//!
-//! Custom cargo command: [builder][cargo_example], [derive][cargo_example_derive]
-//! - Topics:
-//! - Subcommands
-//! - Cargo plugins
-//!
-//! find-like interface: [builder][find]
-//! - Topics:
-//! - Position-sensitive flags
-//!
-//! git-like interface: [builder][git], [derive][git_derive]
-//! - Topics:
-//! - Subcommands
-//! - External subcommands
-//! - Optional subcommands
-//! - Default subcommands
-//! - [`last`][crate::Arg::last]
-//!
-//! pacman-like interface: [builder][pacman]
-//! - Topics:
-//! - Flag subcommands
-//! - Conflicting arguments
-//!
-//! Escaped positionals with `--`: [builder][escaped_positional], [derive][escaped_positional_derive]
-//!
-//! Multi-call
-//! - busybox: [builder][multicall_busybox]
-//! - Topics:
-//! - Subcommands
-//! - hostname: [builder][multicall_hostname]
-//! - Topics:
-//! - Subcommands
-//!
-//! repl: [builder][repl]
-//! - Topics:
-//! - Read-Eval-Print Loops / Custom command lines
-
-pub mod cargo_example;
-pub mod cargo_example_derive;
-pub mod escaped_positional;
-pub mod escaped_positional_derive;
-pub mod find;
-pub mod git;
-pub mod git_derive;
-pub mod multicall_busybox;
-pub mod multicall_hostname;
-pub mod pacman;
-pub mod repl;
-pub mod typed_derive;