ELF                      @       M          @ 8  @ # !       @       @       @                                                        p      p                                                                                    p      p             Rtd                                            Ptd                     <       <              Qtd                                                                              8       8                       Android %            GNU T&f]Ͻk91+                         %                      4                      A                                   -                S          c    [                                Sj                                           rust_metadata_clap_82dc4a4557cbd8db __cxa_finalize __cxa_atexit __register_atfork libc.so LIBC libclap.dylib.so        APS2                                                                           ;<         T      h      |                               zR |       x             ,   p             @   `             T   P             h   H             |   L                    Y   _@    _  ` բW    CW   {  @b      @   @   @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S              `                     o            o          o           o                               H                                         8                           0      
       q       o                                                   o          o          o                                                                        rustc version 1.93.1-dev (01f6ddf75 2026-02-11) (Android Rust Toolchain version 14933020-linux-x86) Android (14863223, +pgo, +bolt, +lto, +mlgo, based on r584948b) clang version 22.0.1 (https://android.googlesource.com/toolchain/llvm-project 2d65e4108033380e6fe8e08b1f1826cd2bfb0c99)  Linker: LLD 22.0.1 (/mnt/disks/build-disk/src/googleplex-android/llvm-r584948-release/out/llvm-project/llvm 2d65e4108033380e6fe8e08b1f1826cd2bfb0c99) rust   
-      rust   
,      [rustc 1.93.1-dev (01f6ddf75 2026-02-11) (Android Rust Toolchain version 14933020-linux-x86)\hRꋔ Y   *˝N   i@|W
   ӥLBٿ   	|pȲΦxJ    $l3< P!97,    	hashbrownpp|S\M    
std_detect;!QRX    rustc_demanglec.0"g    cfg_ifSLU   {"tĪg=/   clap_builderֈ/݃sy    anstyle-x
ڄ)    clap_lex'~{`]}9    strsim)uw2eML D    clap_derive>ÝL;b@                      	_conceptsL! <!  unstable-doct! ĳ!   	_cookbookL" <! t! !   _derive<" <" t" ě"   _faq$" <" t" "   	_featuresL# <" t# "   	_tutorialL# <# t# İ#   ReadmeDoctestst$ <$                      $!        Args$!  :       Parser4!  #       
SubcommandT!  >       	ValueEnumL!  B      	-    builder=
  y   error-
     parser5
     	ArgActionM   y=    	ValueHintM    Arg    ArgGroupE    
ArgMatchesU    ColorChoice] "   Id !   CommandFactoryu	 2   FromArgMatchesu	 5   command=!     arg_implE"     argv     value_parsere
   !   /  , > **Command Line Argument Parser for Rust**        Quick Links:  D  A - Derive [tutorial][_derive::_tutorial] and [reference][_derive]  <  9 - Builder [tutorial][_tutorial] and [reference][Command]  ܞ   - [Cookbook][_cookbook]     - [CLI Concepts][_concepts]     - [FAQ][_faq]  @  = - [Discussions](https://github.com/clap-rs/clap/discussions)  n  k - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.60/CHANGELOG.md) (includes major version migration  l  
   guides)        ## Aspirations     9  6 - Out of the box, users get a polished CLI experience       - Including common argument behavior, help generation, suggested fixes for users, colored output, [shell completions](https://github.com/clap-rs/clap/tree/master/clap_complete), etc  9  6 - Flexible enough to port your existing CLI interface  J  G   - However, we won't necessarily streamline support for each use case  	"   - Reasonable parse performance  	)  & - Resilient maintainership, including  
a  ^   - Willing to break compatibility rather than batching up breaking changes in large releases  
;  8   - Leverage feature flags to keep to one active branch  Z  W   - Being under [WG-CLI](https://github.com/rust-cli/team/) to increase the bus factor  T  Q - We follow semver and will wait about 6-9 months between major breaking changes  M  J - We will support the last two minor Rust releases (MSRV, currently 1.74)     O  L While these aspirations can be at odds with fast build times and low binary  O  L size, we will still strive to keep these reasonable for the flexibility you     get.  Check out the  Q  N [argparse-benchmarks](https://github.com/rust-cli/argparse-benchmarks-rs) for  .  + CLI parsers optimized for other use cases.     t   ## Example     <   Run  t   ```console  &  # $ cargo add clap --features derive  <   ```  4  1 *(See also [feature flag reference][_features])*     &  # Then define your CLI in `main.rs`:  \   ```rust  "   # #[cfg(feature = "derive")] {   use clap::Parser;\n\n/// Simple program to greet a person\n#[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args {\n    /// Name of the person to greet\n    #[arg(short, long)]\n    name: String,\n\n    /// Number of times to greet\n    #[arg(short, long, default_value_t = 1)]\n    count: u8,\n}\n\nfn main() {\n    let args = Args::parse();\n\n    for _ in 0..args.count {\n        println!(\"Hello {}!\", args.name);\n    }\n}\n   use clap::Parser;

/// Simple program to greet a person
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
struct Args {
    /// Name of the person to greet
    #[arg(short, long)]
    name: String,

    /// Number of times to greet
    #[arg(short, long, default_value_t = 1)]
    count: u8,
}

fn main() {
    let args = Args::parse();

    for _ in 0..args.count {
        println!("Hello {}!", args.name);
    }
}
  -   <   # }  <         And try it out:   ```console\n$ demo --help\nA simple to use, efficient, and full-featured Command Line Argument Parser\n\nUsage: demo[EXE] [OPTIONS] --name <NAME>\n\nOptions:\n  -n, --name <NAME>    Name of the person to greet\n  -c, --count <COUNT>  Number of times to greet [default: 1]\n  -h, --help           Print help\n  -V, --version        Print version\n\n$ demo --name Me\nHello Me!\n\n```\n*(version number and `.exe` extension on windows replaced by placeholders)*\n   ```console
$ demo --help
A simple to use, efficient, and full-featured Command Line Argument Parser

Usage: demo[EXE] [OPTIONS] --name <NAME>

Options:
  -n, --name <NAME>    Name of the person to greet
  -c, --count <COUNT>  Number of times to greet [default: 1]
  -h, --help           Print help
  -V, --version        Print version

$ demo --name Me
Hello Me!

```
*(version number and `.exe` extension on windows replaced by placeholders)*
  -      O  L See also the derive [tutorial][_derive::_tutorial] and [reference][_derive]     Į   ### Related Projects        Augment clap:  g  d - [wild](https://crates.io/crates/wild) for supporting wildcards (`*`) on Windows like you do Linux  s  p - [argfile](https://crates.io/crates/argfile) for loading additional arguments from a file (aka response files)  \  Y - [shadow-rs](https://crates.io/crates/shadow-rs) for generating `Command::long_version`  _  \ - [clap_mangen](https://crates.io/crates/clap_mangen) for generating man page source (roff)  Z  W - [clap_complete](https://crates.io/crates/clap_complete) for shell completion support     - [clap-i18n-richformatter](https://crates.io/crates/clap-i18n-richformatter) for i18n support with `clap::error::RichFormatter`     |   CLI Helpers  _  \ - [clio](https://crates.io/crates/clio) for reading/writing to files specified as arguments  I  F - [clap-verbosity-flag](https://crates.io/crates/clap-verbosity-flag)  7  4 - [clap-cargo](https://crates.io/crates/clap-cargo)  C  @ - [colorchoice-clap](https://crates.io/crates/colorchoice-clap)     \   Testing  I  F - [`trycmd`](https://crates.io/crates/trycmd):  Bulk snapshot testing  R  O - [`snapbox`](https://crates.io/crates/snapbox):  Specialized snapshot testing     - [`assert_cmd`](https://crates.io/crates/assert_cmd) and [`assert_fs`](https://crates.io/crates/assert_fs): Customized testing        Documentation:  S  P - [Command-line Apps for Rust](https://rust-cli.github.io/book/index.html) book        8 l       7 Ehttps://raw.githubusercontent.com/clap-rs/clap/master/assets/clap.png G `                     :       #       >      1 B  1    	Q   i  y      	    	   y   	   	   
   
)   
F "  
Z !  
z 2   5              d   8 \  11 
clap-cargo   "https://crates.io/crates/assert_fs  Command-line Apps for Rust  *https://rust-cli.github.io/book/index.html   CLI Concepts  FAQ  Discussions       wild  https://crates.io/crates/wild  argfile    https://crates.io/crates/clio  clap-verbosity-flag  ,https://crates.io/crates/clap-verbosity-flag   	assert_fs ? ?   Cookbook @ @       feature flag reference @ @   clio   A A   #https://crates.io/crates/assert_cmd A ?   _derive::_tutorial B @      2https://github.com/rust-cli/argparse-benchmarks-rs B @   0https://crates.io/crates/clap-i18n-richformatter B A   
assert_cmd B A   tutorial C B   argparse-benchmarks   C B   clap-i18n-richformatter D B    https://crates.io/crates/snapbox D B  D C   !https://github.com/rust-cli/team/ E C   &https://crates.io/crates/clap_complete E D   snapbox E D  D   WG-CLI F E   clap_complete F E   https://crates.io/crates/trycmd F E   9https://github.com/clap-rs/clap/tree/master/clap_complete G F   $https://crates.io/crates/clap_mangen G F   trycmd G F   shell completions G G   clap_mangen H G   )https://crates.io/crates/colorchoice-clap H G   9https://github.com/clap-rs/clap/blob/v4.5.60/CHANGELOG.md H G   "https://crates.io/crates/shadow-rs I H   colorchoice-clap I H  y  	CHANGELOG I H    	shadow-rs J I   #https://crates.io/crates/clap-cargo J I   +https://github.com/clap-rs/clap/discussions y K I      https://crates.io/crates/argfile K J  ? K J  ? @ K y  K      A L K  A ? K  ? ? @ @ K      @ A  L  A A :#>B25J    JKJJK5WEJ܂Av2Pn|@9r)4.e9ĸEN=0
|[y99Z^	C;KG&@M hnquz  k      }gjquy}&'                                     #  Š    WEJ܂o   S V      WEJ܂XW   #  V   WEJ܂a   ('(      #((+(}((L(<(((m(ODHT 
                   KG&@	               r)4.                           WEJ܂                            e9ĸEN               =0
|[   |@9   y99Z^	   Av2P   n   C;   CA'-DyqCA'-Dyq  8./external/rust/android-crates-io/crates/clap/src/lib.rs  ga\AV?1%+                 $$n}"`W0E= Ao::K#*b<[UNPPR/'5'#..Pht]`[`J8DJSTa'B!!!!!!&!UKNs`Ws    E./external/rust/android-crates-io/crates/clap/src/../examples/demo.rs  J:(7XŎ$EPs                 %.$!-* &Q#窖    E./external/rust/android-crates-io/crates/clap/src/../examples/demo.md  H0a Ar rv                 K)	3="%
 m4IiH6%  )*v+ aarch64-linux-android\*,i clap   WEJ܂     W              J         
   P                                       
 


                                                                                                           
                                                 rust-end-file            PQ        >             (/`>  #%@M1\17U+ldY[DD!!2\W:Z[ggC	S3fn'ij(AX(E(EԊxr# C<N#N_bw%4r}Ńxb+: `L606ژ=,k	:pzUDW       ]             (/`] E b(-piFNî{a>`X;OZk![7?A<y|˪:QUp4**,F,Ic[<d,)_AIhfbpOx	;,lAē,kƴ,XȄ  = `F0uL!00q:Pi%ܪp8B.S xv)4- hV           	 L           	    ]  j    I           n              V                         (/` e	 API
!Pҩ*Rڊĭ$: : 6 .&-T <Nmb<!!XeQDko /ѻ-Lj"jYD!IbMI{(wt7:(uC_k.2"G׬EFųs/΍-_g EÔ
E%hLʶ֝
.ׂf"5:sͲw=^?Oeu NPS/l0'hF2Ȏsx       `              (/ ` \              
  0d| 3e%/hC ^                    (/` 	 $    z       Z   K&3%C튢7)]3߸2.f&|QFG^IA~yiu	{UQ1; 
 	  !  *1$KL 	*
K
 G    Abionic/libc/arch-common/  crtbrand.S HBend_so.S     #NUggWlj0cI*3 Y 21 qHU 歘&*a       y              (/ y} D8IfL,y&#c\>Qu2fȿx,Hj={K a>i                                                                                          .                  ;                    >                    A                  S                    V                    Y                    \                    _                     b                    e                    h                      k                      n                      q                      t                      w                     z                      }                          H                                                                                                                                                                                         /                     H                   H                    h              P                               -                            "                     >                      .note.android.ident .note.gnu.build-id .dynsym .gnu.version .gnu.version_r .gnu.hash .hash .dynstr .rela.dyn .relr.dyn .rela.plt .eh_frame_hdr .eh_frame .text .plt .data.rel.ro .fini_array .dynamic .got.plt .relro_padding .comment .rustc .debug_loclists .debug_abbrev .debug_info .debug_rnglists .debug_str_offsets .debug_str .debug_addr .debug_line .debug_line_str .symtab .shstrtab .strtab  clap.82dc4a4557cbd8db-cgu.0 $d crtbegin_so.c __on_dlclose $x $x __on_dlclose_late $x $x $x $x $d $d $d $d $d $d $d $d $d $d $d $d $d $d abitag $d $d __FRAME_END__ $d $d rust_metadata_clap_82dc4a4557cbd8db __dso_handle __cxa_finalize __emutls_unregister_key __atexit_handler_wrapper atexit __cxa_atexit pthread_atfork __register_atfork _DYNAMIC                                                                                                                                                                                        (             8      8      x                           0   o                   
                            =   o                                                L   o                                                 V                           0                            \             0      0      q                              d     `                                                n    o                                                x      B                   H                                                    <                                           H      H                                                             D                                                         P                                                                                                                                                                       p                                                    0                                                       H                                   0                                                                       k      -                                                   @                                                         A                                                        A      
                                                  C      #                              )                     +C      P                              <     0              {C      N                            G                    D      V                              S                    E      D                             _     0              cF      p                             o                     F            "   &                 w                     J                                                        QL      Y                             