commonmarker 0.23.10 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/Cargo.lock +1156 -0
 - data/Cargo.toml +7 -0
 - data/README.md +237 -172
 - data/ext/commonmarker/Cargo.toml +20 -0
 - data/ext/commonmarker/extconf.rb +3 -6
 - data/ext/commonmarker/src/lib.rs +103 -0
 - data/ext/commonmarker/src/node.rs +1221 -0
 - data/ext/commonmarker/src/options.rs +220 -0
 - data/ext/commonmarker/src/plugins/syntax_highlighting.rs +166 -0
 - data/ext/commonmarker/src/plugins.rs +6 -0
 - data/ext/commonmarker/src/utils.rs +8 -0
 - data/lib/commonmarker/config.rb +92 -40
 - data/lib/commonmarker/constants.rb +7 -0
 - data/lib/commonmarker/extension.rb +14 -0
 - data/lib/commonmarker/node/ast.rb +8 -0
 - data/lib/commonmarker/node/inspect.rb +14 -4
 - data/lib/commonmarker/node.rb +29 -47
 - data/lib/commonmarker/renderer.rb +1 -127
 - data/lib/commonmarker/utils.rb +22 -0
 - data/lib/commonmarker/version.rb +2 -2
 - data/lib/commonmarker.rb +27 -25
 - metadata +38 -191
 - data/Rakefile +0 -109
 - data/bin/commonmarker +0 -118
 - data/commonmarker.gemspec +0 -38
 - data/ext/commonmarker/arena.c +0 -104
 - data/ext/commonmarker/autolink.c +0 -508
 - data/ext/commonmarker/autolink.h +0 -8
 - data/ext/commonmarker/blocks.c +0 -1622
 - data/ext/commonmarker/buffer.c +0 -278
 - data/ext/commonmarker/buffer.h +0 -116
 - data/ext/commonmarker/case_fold_switch.inc +0 -4327
 - data/ext/commonmarker/chunk.h +0 -135
 - data/ext/commonmarker/cmark-gfm-core-extensions.h +0 -54
 - data/ext/commonmarker/cmark-gfm-extension_api.h +0 -737
 - data/ext/commonmarker/cmark-gfm-extensions_export.h +0 -42
 - data/ext/commonmarker/cmark-gfm.h +0 -833
 - data/ext/commonmarker/cmark-gfm_export.h +0 -42
 - data/ext/commonmarker/cmark-gfm_version.h +0 -7
 - data/ext/commonmarker/cmark.c +0 -55
 - data/ext/commonmarker/cmark_ctype.c +0 -44
 - data/ext/commonmarker/cmark_ctype.h +0 -33
 - data/ext/commonmarker/commonmark.c +0 -514
 - data/ext/commonmarker/commonmarker.c +0 -1308
 - data/ext/commonmarker/commonmarker.h +0 -16
 - data/ext/commonmarker/config.h +0 -76
 - data/ext/commonmarker/core-extensions.c +0 -27
 - data/ext/commonmarker/entities.inc +0 -2138
 - data/ext/commonmarker/ext_scanners.c +0 -879
 - data/ext/commonmarker/ext_scanners.h +0 -24
 - data/ext/commonmarker/footnotes.c +0 -63
 - data/ext/commonmarker/footnotes.h +0 -27
 - data/ext/commonmarker/houdini.h +0 -57
 - data/ext/commonmarker/houdini_href_e.c +0 -100
 - data/ext/commonmarker/houdini_html_e.c +0 -66
 - data/ext/commonmarker/houdini_html_u.c +0 -149
 - data/ext/commonmarker/html.c +0 -502
 - data/ext/commonmarker/html.h +0 -27
 - data/ext/commonmarker/inlines.c +0 -1788
 - data/ext/commonmarker/inlines.h +0 -29
 - data/ext/commonmarker/iterator.c +0 -159
 - data/ext/commonmarker/iterator.h +0 -26
 - data/ext/commonmarker/latex.c +0 -468
 - data/ext/commonmarker/linked_list.c +0 -37
 - data/ext/commonmarker/man.c +0 -274
 - data/ext/commonmarker/map.c +0 -129
 - data/ext/commonmarker/map.h +0 -44
 - data/ext/commonmarker/node.c +0 -1045
 - data/ext/commonmarker/node.h +0 -167
 - data/ext/commonmarker/parser.h +0 -59
 - data/ext/commonmarker/plaintext.c +0 -218
 - data/ext/commonmarker/plugin.c +0 -36
 - data/ext/commonmarker/plugin.h +0 -34
 - data/ext/commonmarker/references.c +0 -43
 - data/ext/commonmarker/references.h +0 -26
 - data/ext/commonmarker/registry.c +0 -63
 - data/ext/commonmarker/registry.h +0 -24
 - data/ext/commonmarker/render.c +0 -213
 - data/ext/commonmarker/render.h +0 -62
 - data/ext/commonmarker/scanners.c +0 -14056
 - data/ext/commonmarker/scanners.h +0 -70
 - data/ext/commonmarker/scanners.re +0 -341
 - data/ext/commonmarker/strikethrough.c +0 -167
 - data/ext/commonmarker/strikethrough.h +0 -9
 - data/ext/commonmarker/syntax_extension.c +0 -149
 - data/ext/commonmarker/syntax_extension.h +0 -34
 - data/ext/commonmarker/table.c +0 -917
 - data/ext/commonmarker/table.h +0 -12
 - data/ext/commonmarker/tagfilter.c +0 -60
 - data/ext/commonmarker/tagfilter.h +0 -8
 - data/ext/commonmarker/tasklist.c +0 -156
 - data/ext/commonmarker/tasklist.h +0 -8
 - data/ext/commonmarker/utf8.c +0 -317
 - data/ext/commonmarker/utf8.h +0 -35
 - data/ext/commonmarker/xml.c +0 -182
 - data/lib/commonmarker/renderer/html_renderer.rb +0 -256
 
    
        data/Cargo.lock
    ADDED
    
    | 
         @@ -0,0 +1,1156 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # This file is automatically @generated by Cargo.
         
     | 
| 
      
 2 
     | 
    
         
            +
            # It is not intended for manual editing.
         
     | 
| 
      
 3 
     | 
    
         
            +
            version = 3
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 6 
     | 
    
         
            +
            name = "adler2"
         
     | 
| 
      
 7 
     | 
    
         
            +
            version = "2.0.0"
         
     | 
| 
      
 8 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 9 
     | 
    
         
            +
            checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 12 
     | 
    
         
            +
            name = "aho-corasick"
         
     | 
| 
      
 13 
     | 
    
         
            +
            version = "1.1.3"
         
     | 
| 
      
 14 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 15 
     | 
    
         
            +
            checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
         
     | 
| 
      
 16 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 17 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 18 
     | 
    
         
            +
            ]
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 21 
     | 
    
         
            +
            name = "anstream"
         
     | 
| 
      
 22 
     | 
    
         
            +
            version = "0.6.18"
         
     | 
| 
      
 23 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 24 
     | 
    
         
            +
            checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
         
     | 
| 
      
 25 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 26 
     | 
    
         
            +
             "anstyle",
         
     | 
| 
      
 27 
     | 
    
         
            +
             "anstyle-parse",
         
     | 
| 
      
 28 
     | 
    
         
            +
             "anstyle-query",
         
     | 
| 
      
 29 
     | 
    
         
            +
             "anstyle-wincon",
         
     | 
| 
      
 30 
     | 
    
         
            +
             "colorchoice",
         
     | 
| 
      
 31 
     | 
    
         
            +
             "is_terminal_polyfill",
         
     | 
| 
      
 32 
     | 
    
         
            +
             "utf8parse",
         
     | 
| 
      
 33 
     | 
    
         
            +
            ]
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 36 
     | 
    
         
            +
            name = "anstyle"
         
     | 
| 
      
 37 
     | 
    
         
            +
            version = "1.0.10"
         
     | 
| 
      
 38 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 39 
     | 
    
         
            +
            checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 42 
     | 
    
         
            +
            name = "anstyle-parse"
         
     | 
| 
      
 43 
     | 
    
         
            +
            version = "0.2.6"
         
     | 
| 
      
 44 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 45 
     | 
    
         
            +
            checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
         
     | 
| 
      
 46 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 47 
     | 
    
         
            +
             "utf8parse",
         
     | 
| 
      
 48 
     | 
    
         
            +
            ]
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 51 
     | 
    
         
            +
            name = "anstyle-query"
         
     | 
| 
      
 52 
     | 
    
         
            +
            version = "1.1.2"
         
     | 
| 
      
 53 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 54 
     | 
    
         
            +
            checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
         
     | 
| 
      
 55 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 56 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 57 
     | 
    
         
            +
            ]
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 60 
     | 
    
         
            +
            name = "anstyle-wincon"
         
     | 
| 
      
 61 
     | 
    
         
            +
            version = "3.0.6"
         
     | 
| 
      
 62 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 63 
     | 
    
         
            +
            checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
         
     | 
| 
      
 64 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 65 
     | 
    
         
            +
             "anstyle",
         
     | 
| 
      
 66 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 67 
     | 
    
         
            +
            ]
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 70 
     | 
    
         
            +
            name = "base64"
         
     | 
| 
      
 71 
     | 
    
         
            +
            version = "0.22.1"
         
     | 
| 
      
 72 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 73 
     | 
    
         
            +
            checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 76 
     | 
    
         
            +
            name = "bincode"
         
     | 
| 
      
 77 
     | 
    
         
            +
            version = "1.3.3"
         
     | 
| 
      
 78 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 79 
     | 
    
         
            +
            checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
         
     | 
| 
      
 80 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 81 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 82 
     | 
    
         
            +
            ]
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 85 
     | 
    
         
            +
            name = "bindgen"
         
     | 
| 
      
 86 
     | 
    
         
            +
            version = "0.69.5"
         
     | 
| 
      
 87 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 88 
     | 
    
         
            +
            checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
         
     | 
| 
      
 89 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 90 
     | 
    
         
            +
             "bitflags 2.6.0",
         
     | 
| 
      
 91 
     | 
    
         
            +
             "cexpr",
         
     | 
| 
      
 92 
     | 
    
         
            +
             "clang-sys",
         
     | 
| 
      
 93 
     | 
    
         
            +
             "itertools",
         
     | 
| 
      
 94 
     | 
    
         
            +
             "lazy_static",
         
     | 
| 
      
 95 
     | 
    
         
            +
             "lazycell",
         
     | 
| 
      
 96 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 97 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 98 
     | 
    
         
            +
             "regex",
         
     | 
| 
      
 99 
     | 
    
         
            +
             "rustc-hash",
         
     | 
| 
      
 100 
     | 
    
         
            +
             "shlex",
         
     | 
| 
      
 101 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 102 
     | 
    
         
            +
            ]
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 105 
     | 
    
         
            +
            name = "bit-set"
         
     | 
| 
      
 106 
     | 
    
         
            +
            version = "0.5.3"
         
     | 
| 
      
 107 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 108 
     | 
    
         
            +
            checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
         
     | 
| 
      
 109 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 110 
     | 
    
         
            +
             "bit-vec",
         
     | 
| 
      
 111 
     | 
    
         
            +
            ]
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 114 
     | 
    
         
            +
            name = "bit-vec"
         
     | 
| 
      
 115 
     | 
    
         
            +
            version = "0.6.3"
         
     | 
| 
      
 116 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 117 
     | 
    
         
            +
            checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 120 
     | 
    
         
            +
            name = "bitflags"
         
     | 
| 
      
 121 
     | 
    
         
            +
            version = "1.3.2"
         
     | 
| 
      
 122 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 123 
     | 
    
         
            +
            checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 126 
     | 
    
         
            +
            name = "bitflags"
         
     | 
| 
      
 127 
     | 
    
         
            +
            version = "2.6.0"
         
     | 
| 
      
 128 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 129 
     | 
    
         
            +
            checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 132 
     | 
    
         
            +
            name = "bon"
         
     | 
| 
      
 133 
     | 
    
         
            +
            version = "3.3.2"
         
     | 
| 
      
 134 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 135 
     | 
    
         
            +
            checksum = "fe7acc34ff59877422326db7d6f2d845a582b16396b6b08194942bf34c6528ab"
         
     | 
| 
      
 136 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 137 
     | 
    
         
            +
             "bon-macros",
         
     | 
| 
      
 138 
     | 
    
         
            +
             "rustversion",
         
     | 
| 
      
 139 
     | 
    
         
            +
            ]
         
     | 
| 
      
 140 
     | 
    
         
            +
             
     | 
| 
      
 141 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 142 
     | 
    
         
            +
            name = "bon-macros"
         
     | 
| 
      
 143 
     | 
    
         
            +
            version = "3.3.2"
         
     | 
| 
      
 144 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 145 
     | 
    
         
            +
            checksum = "4159dd617a7fbc9be6a692fe69dc2954f8e6bb6bb5e4d7578467441390d77fd0"
         
     | 
| 
      
 146 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 147 
     | 
    
         
            +
             "darling",
         
     | 
| 
      
 148 
     | 
    
         
            +
             "ident_case",
         
     | 
| 
      
 149 
     | 
    
         
            +
             "prettyplease",
         
     | 
| 
      
 150 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 151 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 152 
     | 
    
         
            +
             "rustversion",
         
     | 
| 
      
 153 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 154 
     | 
    
         
            +
            ]
         
     | 
| 
      
 155 
     | 
    
         
            +
             
     | 
| 
      
 156 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 157 
     | 
    
         
            +
            name = "bumpalo"
         
     | 
| 
      
 158 
     | 
    
         
            +
            version = "3.16.0"
         
     | 
| 
      
 159 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 160 
     | 
    
         
            +
            checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 163 
     | 
    
         
            +
            name = "caseless"
         
     | 
| 
      
 164 
     | 
    
         
            +
            version = "0.2.1"
         
     | 
| 
      
 165 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 166 
     | 
    
         
            +
            checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f"
         
     | 
| 
      
 167 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 168 
     | 
    
         
            +
             "regex",
         
     | 
| 
      
 169 
     | 
    
         
            +
             "unicode-normalization",
         
     | 
| 
      
 170 
     | 
    
         
            +
            ]
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 173 
     | 
    
         
            +
            name = "cc"
         
     | 
| 
      
 174 
     | 
    
         
            +
            version = "1.2.6"
         
     | 
| 
      
 175 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 176 
     | 
    
         
            +
            checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
         
     | 
| 
      
 177 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 178 
     | 
    
         
            +
             "shlex",
         
     | 
| 
      
 179 
     | 
    
         
            +
            ]
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 182 
     | 
    
         
            +
            name = "cexpr"
         
     | 
| 
      
 183 
     | 
    
         
            +
            version = "0.6.0"
         
     | 
| 
      
 184 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 185 
     | 
    
         
            +
            checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
         
     | 
| 
      
 186 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 187 
     | 
    
         
            +
             "nom",
         
     | 
| 
      
 188 
     | 
    
         
            +
            ]
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
      
 190 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 191 
     | 
    
         
            +
            name = "cfg-if"
         
     | 
| 
      
 192 
     | 
    
         
            +
            version = "1.0.0"
         
     | 
| 
      
 193 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 194 
     | 
    
         
            +
            checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 197 
     | 
    
         
            +
            name = "clang-sys"
         
     | 
| 
      
 198 
     | 
    
         
            +
            version = "1.8.1"
         
     | 
| 
      
 199 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 200 
     | 
    
         
            +
            checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
         
     | 
| 
      
 201 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 202 
     | 
    
         
            +
             "glob",
         
     | 
| 
      
 203 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 204 
     | 
    
         
            +
             "libloading",
         
     | 
| 
      
 205 
     | 
    
         
            +
            ]
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 208 
     | 
    
         
            +
            name = "clap"
         
     | 
| 
      
 209 
     | 
    
         
            +
            version = "4.5.23"
         
     | 
| 
      
 210 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 211 
     | 
    
         
            +
            checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
         
     | 
| 
      
 212 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 213 
     | 
    
         
            +
             "clap_builder",
         
     | 
| 
      
 214 
     | 
    
         
            +
             "clap_derive",
         
     | 
| 
      
 215 
     | 
    
         
            +
            ]
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 218 
     | 
    
         
            +
            name = "clap_builder"
         
     | 
| 
      
 219 
     | 
    
         
            +
            version = "4.5.23"
         
     | 
| 
      
 220 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 221 
     | 
    
         
            +
            checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
         
     | 
| 
      
 222 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 223 
     | 
    
         
            +
             "anstream",
         
     | 
| 
      
 224 
     | 
    
         
            +
             "anstyle",
         
     | 
| 
      
 225 
     | 
    
         
            +
             "clap_lex",
         
     | 
| 
      
 226 
     | 
    
         
            +
             "strsim",
         
     | 
| 
      
 227 
     | 
    
         
            +
             "terminal_size",
         
     | 
| 
      
 228 
     | 
    
         
            +
            ]
         
     | 
| 
      
 229 
     | 
    
         
            +
             
     | 
| 
      
 230 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 231 
     | 
    
         
            +
            name = "clap_derive"
         
     | 
| 
      
 232 
     | 
    
         
            +
            version = "4.5.18"
         
     | 
| 
      
 233 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 234 
     | 
    
         
            +
            checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
         
     | 
| 
      
 235 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 236 
     | 
    
         
            +
             "heck",
         
     | 
| 
      
 237 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 238 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 239 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 240 
     | 
    
         
            +
            ]
         
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 243 
     | 
    
         
            +
            name = "clap_lex"
         
     | 
| 
      
 244 
     | 
    
         
            +
            version = "0.7.4"
         
     | 
| 
      
 245 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 246 
     | 
    
         
            +
            checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
         
     | 
| 
      
 247 
     | 
    
         
            +
             
     | 
| 
      
 248 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 249 
     | 
    
         
            +
            name = "colorchoice"
         
     | 
| 
      
 250 
     | 
    
         
            +
            version = "1.0.3"
         
     | 
| 
      
 251 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 252 
     | 
    
         
            +
            checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
         
     | 
| 
      
 253 
     | 
    
         
            +
             
     | 
| 
      
 254 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 255 
     | 
    
         
            +
            name = "commonmarker"
         
     | 
| 
      
 256 
     | 
    
         
            +
            version = "1.0.0"
         
     | 
| 
      
 257 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 258 
     | 
    
         
            +
             "comrak",
         
     | 
| 
      
 259 
     | 
    
         
            +
             "magnus",
         
     | 
| 
      
 260 
     | 
    
         
            +
             "rb-sys",
         
     | 
| 
      
 261 
     | 
    
         
            +
             "rctree",
         
     | 
| 
      
 262 
     | 
    
         
            +
             "syntect",
         
     | 
| 
      
 263 
     | 
    
         
            +
             "typed-arena",
         
     | 
| 
      
 264 
     | 
    
         
            +
            ]
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 267 
     | 
    
         
            +
            name = "comrak"
         
     | 
| 
      
 268 
     | 
    
         
            +
            version = "0.35.0"
         
     | 
| 
      
 269 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 270 
     | 
    
         
            +
            checksum = "52602e10393cfaaf8accaf707f2da743dc22cbe700a343ff8dbc9e5e04bc6b74"
         
     | 
| 
      
 271 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 272 
     | 
    
         
            +
             "bon",
         
     | 
| 
      
 273 
     | 
    
         
            +
             "caseless",
         
     | 
| 
      
 274 
     | 
    
         
            +
             "clap",
         
     | 
| 
      
 275 
     | 
    
         
            +
             "emojis",
         
     | 
| 
      
 276 
     | 
    
         
            +
             "entities",
         
     | 
| 
      
 277 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 278 
     | 
    
         
            +
             "shell-words",
         
     | 
| 
      
 279 
     | 
    
         
            +
             "slug",
         
     | 
| 
      
 280 
     | 
    
         
            +
             "syntect",
         
     | 
| 
      
 281 
     | 
    
         
            +
             "typed-arena",
         
     | 
| 
      
 282 
     | 
    
         
            +
             "unicode_categories",
         
     | 
| 
      
 283 
     | 
    
         
            +
             "xdg",
         
     | 
| 
      
 284 
     | 
    
         
            +
            ]
         
     | 
| 
      
 285 
     | 
    
         
            +
             
     | 
| 
      
 286 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 287 
     | 
    
         
            +
            name = "crc32fast"
         
     | 
| 
      
 288 
     | 
    
         
            +
            version = "1.4.2"
         
     | 
| 
      
 289 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 290 
     | 
    
         
            +
            checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
         
     | 
| 
      
 291 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 292 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 293 
     | 
    
         
            +
            ]
         
     | 
| 
      
 294 
     | 
    
         
            +
             
     | 
| 
      
 295 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 296 
     | 
    
         
            +
            name = "darling"
         
     | 
| 
      
 297 
     | 
    
         
            +
            version = "0.20.10"
         
     | 
| 
      
 298 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 299 
     | 
    
         
            +
            checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
         
     | 
| 
      
 300 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 301 
     | 
    
         
            +
             "darling_core",
         
     | 
| 
      
 302 
     | 
    
         
            +
             "darling_macro",
         
     | 
| 
      
 303 
     | 
    
         
            +
            ]
         
     | 
| 
      
 304 
     | 
    
         
            +
             
     | 
| 
      
 305 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 306 
     | 
    
         
            +
            name = "darling_core"
         
     | 
| 
      
 307 
     | 
    
         
            +
            version = "0.20.10"
         
     | 
| 
      
 308 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 309 
     | 
    
         
            +
            checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
         
     | 
| 
      
 310 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 311 
     | 
    
         
            +
             "fnv",
         
     | 
| 
      
 312 
     | 
    
         
            +
             "ident_case",
         
     | 
| 
      
 313 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 314 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 315 
     | 
    
         
            +
             "strsim",
         
     | 
| 
      
 316 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 317 
     | 
    
         
            +
            ]
         
     | 
| 
      
 318 
     | 
    
         
            +
             
     | 
| 
      
 319 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 320 
     | 
    
         
            +
            name = "darling_macro"
         
     | 
| 
      
 321 
     | 
    
         
            +
            version = "0.20.10"
         
     | 
| 
      
 322 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 323 
     | 
    
         
            +
            checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
         
     | 
| 
      
 324 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 325 
     | 
    
         
            +
             "darling_core",
         
     | 
| 
      
 326 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 327 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 328 
     | 
    
         
            +
            ]
         
     | 
| 
      
 329 
     | 
    
         
            +
             
     | 
| 
      
 330 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 331 
     | 
    
         
            +
            name = "deranged"
         
     | 
| 
      
 332 
     | 
    
         
            +
            version = "0.3.11"
         
     | 
| 
      
 333 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 334 
     | 
    
         
            +
            checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
         
     | 
| 
      
 335 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 336 
     | 
    
         
            +
             "powerfmt",
         
     | 
| 
      
 337 
     | 
    
         
            +
            ]
         
     | 
| 
      
 338 
     | 
    
         
            +
             
     | 
| 
      
 339 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 340 
     | 
    
         
            +
            name = "deunicode"
         
     | 
| 
      
 341 
     | 
    
         
            +
            version = "1.6.0"
         
     | 
| 
      
 342 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 343 
     | 
    
         
            +
            checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
         
     | 
| 
      
 344 
     | 
    
         
            +
             
     | 
| 
      
 345 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 346 
     | 
    
         
            +
            name = "either"
         
     | 
| 
      
 347 
     | 
    
         
            +
            version = "1.13.0"
         
     | 
| 
      
 348 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 349 
     | 
    
         
            +
            checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
         
     | 
| 
      
 350 
     | 
    
         
            +
             
     | 
| 
      
 351 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 352 
     | 
    
         
            +
            name = "emojis"
         
     | 
| 
      
 353 
     | 
    
         
            +
            version = "0.6.4"
         
     | 
| 
      
 354 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 355 
     | 
    
         
            +
            checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4"
         
     | 
| 
      
 356 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 357 
     | 
    
         
            +
             "phf",
         
     | 
| 
      
 358 
     | 
    
         
            +
            ]
         
     | 
| 
      
 359 
     | 
    
         
            +
             
     | 
| 
      
 360 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 361 
     | 
    
         
            +
            name = "entities"
         
     | 
| 
      
 362 
     | 
    
         
            +
            version = "1.0.1"
         
     | 
| 
      
 363 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 364 
     | 
    
         
            +
            checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
         
     | 
| 
      
 365 
     | 
    
         
            +
             
     | 
| 
      
 366 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 367 
     | 
    
         
            +
            name = "equivalent"
         
     | 
| 
      
 368 
     | 
    
         
            +
            version = "1.0.1"
         
     | 
| 
      
 369 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 370 
     | 
    
         
            +
            checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
         
     | 
| 
      
 371 
     | 
    
         
            +
             
     | 
| 
      
 372 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 373 
     | 
    
         
            +
            name = "errno"
         
     | 
| 
      
 374 
     | 
    
         
            +
            version = "0.3.10"
         
     | 
| 
      
 375 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 376 
     | 
    
         
            +
            checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
         
     | 
| 
      
 377 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 378 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 379 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 380 
     | 
    
         
            +
            ]
         
     | 
| 
      
 381 
     | 
    
         
            +
             
     | 
| 
      
 382 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 383 
     | 
    
         
            +
            name = "fancy-regex"
         
     | 
| 
      
 384 
     | 
    
         
            +
            version = "0.11.0"
         
     | 
| 
      
 385 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 386 
     | 
    
         
            +
            checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
         
     | 
| 
      
 387 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 388 
     | 
    
         
            +
             "bit-set",
         
     | 
| 
      
 389 
     | 
    
         
            +
             "regex",
         
     | 
| 
      
 390 
     | 
    
         
            +
            ]
         
     | 
| 
      
 391 
     | 
    
         
            +
             
     | 
| 
      
 392 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 393 
     | 
    
         
            +
            name = "flate2"
         
     | 
| 
      
 394 
     | 
    
         
            +
            version = "1.0.35"
         
     | 
| 
      
 395 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 396 
     | 
    
         
            +
            checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
         
     | 
| 
      
 397 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 398 
     | 
    
         
            +
             "crc32fast",
         
     | 
| 
      
 399 
     | 
    
         
            +
             "miniz_oxide",
         
     | 
| 
      
 400 
     | 
    
         
            +
            ]
         
     | 
| 
      
 401 
     | 
    
         
            +
             
     | 
| 
      
 402 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 403 
     | 
    
         
            +
            name = "fnv"
         
     | 
| 
      
 404 
     | 
    
         
            +
            version = "1.0.7"
         
     | 
| 
      
 405 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 406 
     | 
    
         
            +
            checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
         
     | 
| 
      
 407 
     | 
    
         
            +
             
     | 
| 
      
 408 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 409 
     | 
    
         
            +
            name = "glob"
         
     | 
| 
      
 410 
     | 
    
         
            +
            version = "0.3.2"
         
     | 
| 
      
 411 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 412 
     | 
    
         
            +
            checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
         
     | 
| 
      
 413 
     | 
    
         
            +
             
     | 
| 
      
 414 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 415 
     | 
    
         
            +
            name = "hashbrown"
         
     | 
| 
      
 416 
     | 
    
         
            +
            version = "0.15.2"
         
     | 
| 
      
 417 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 418 
     | 
    
         
            +
            checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
         
     | 
| 
      
 419 
     | 
    
         
            +
             
     | 
| 
      
 420 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 421 
     | 
    
         
            +
            name = "heck"
         
     | 
| 
      
 422 
     | 
    
         
            +
            version = "0.5.0"
         
     | 
| 
      
 423 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 424 
     | 
    
         
            +
            checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
         
     | 
| 
      
 425 
     | 
    
         
            +
             
     | 
| 
      
 426 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 427 
     | 
    
         
            +
            name = "ident_case"
         
     | 
| 
      
 428 
     | 
    
         
            +
            version = "1.0.1"
         
     | 
| 
      
 429 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 430 
     | 
    
         
            +
            checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
         
     | 
| 
      
 431 
     | 
    
         
            +
             
     | 
| 
      
 432 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 433 
     | 
    
         
            +
            name = "indexmap"
         
     | 
| 
      
 434 
     | 
    
         
            +
            version = "2.7.0"
         
     | 
| 
      
 435 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 436 
     | 
    
         
            +
            checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
         
     | 
| 
      
 437 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 438 
     | 
    
         
            +
             "equivalent",
         
     | 
| 
      
 439 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
      
 440 
     | 
    
         
            +
            ]
         
     | 
| 
      
 441 
     | 
    
         
            +
             
     | 
| 
      
 442 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 443 
     | 
    
         
            +
            name = "is_terminal_polyfill"
         
     | 
| 
      
 444 
     | 
    
         
            +
            version = "1.70.1"
         
     | 
| 
      
 445 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 446 
     | 
    
         
            +
            checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
         
     | 
| 
      
 447 
     | 
    
         
            +
             
     | 
| 
      
 448 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 449 
     | 
    
         
            +
            name = "itertools"
         
     | 
| 
      
 450 
     | 
    
         
            +
            version = "0.12.1"
         
     | 
| 
      
 451 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 452 
     | 
    
         
            +
            checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
         
     | 
| 
      
 453 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 454 
     | 
    
         
            +
             "either",
         
     | 
| 
      
 455 
     | 
    
         
            +
            ]
         
     | 
| 
      
 456 
     | 
    
         
            +
             
     | 
| 
      
 457 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 458 
     | 
    
         
            +
            name = "itoa"
         
     | 
| 
      
 459 
     | 
    
         
            +
            version = "1.0.14"
         
     | 
| 
      
 460 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 461 
     | 
    
         
            +
            checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
         
     | 
| 
      
 462 
     | 
    
         
            +
             
     | 
| 
      
 463 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 464 
     | 
    
         
            +
            name = "lazy_static"
         
     | 
| 
      
 465 
     | 
    
         
            +
            version = "1.5.0"
         
     | 
| 
      
 466 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 467 
     | 
    
         
            +
            checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
         
     | 
| 
      
 468 
     | 
    
         
            +
             
     | 
| 
      
 469 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 470 
     | 
    
         
            +
            name = "lazycell"
         
     | 
| 
      
 471 
     | 
    
         
            +
            version = "1.3.0"
         
     | 
| 
      
 472 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 473 
     | 
    
         
            +
            checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
         
     | 
| 
      
 474 
     | 
    
         
            +
             
     | 
| 
      
 475 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 476 
     | 
    
         
            +
            name = "libc"
         
     | 
| 
      
 477 
     | 
    
         
            +
            version = "0.2.169"
         
     | 
| 
      
 478 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 479 
     | 
    
         
            +
            checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
         
     | 
| 
      
 480 
     | 
    
         
            +
             
     | 
| 
      
 481 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 482 
     | 
    
         
            +
            name = "libloading"
         
     | 
| 
      
 483 
     | 
    
         
            +
            version = "0.8.6"
         
     | 
| 
      
 484 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 485 
     | 
    
         
            +
            checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
         
     | 
| 
      
 486 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 487 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 488 
     | 
    
         
            +
             "windows-targets",
         
     | 
| 
      
 489 
     | 
    
         
            +
            ]
         
     | 
| 
      
 490 
     | 
    
         
            +
             
     | 
| 
      
 491 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 492 
     | 
    
         
            +
            name = "linked-hash-map"
         
     | 
| 
      
 493 
     | 
    
         
            +
            version = "0.5.6"
         
     | 
| 
      
 494 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 495 
     | 
    
         
            +
            checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
         
     | 
| 
      
 496 
     | 
    
         
            +
             
     | 
| 
      
 497 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 498 
     | 
    
         
            +
            name = "linux-raw-sys"
         
     | 
| 
      
 499 
     | 
    
         
            +
            version = "0.4.14"
         
     | 
| 
      
 500 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 501 
     | 
    
         
            +
            checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
         
     | 
| 
      
 502 
     | 
    
         
            +
             
     | 
| 
      
 503 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 504 
     | 
    
         
            +
            name = "log"
         
     | 
| 
      
 505 
     | 
    
         
            +
            version = "0.4.22"
         
     | 
| 
      
 506 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 507 
     | 
    
         
            +
            checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
         
     | 
| 
      
 508 
     | 
    
         
            +
             
     | 
| 
      
 509 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 510 
     | 
    
         
            +
            name = "magnus"
         
     | 
| 
      
 511 
     | 
    
         
            +
            version = "0.7.1"
         
     | 
| 
      
 512 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 513 
     | 
    
         
            +
            checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
         
     | 
| 
      
 514 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 515 
     | 
    
         
            +
             "magnus-macros",
         
     | 
| 
      
 516 
     | 
    
         
            +
             "rb-sys",
         
     | 
| 
      
 517 
     | 
    
         
            +
             "rb-sys-env",
         
     | 
| 
      
 518 
     | 
    
         
            +
             "seq-macro",
         
     | 
| 
      
 519 
     | 
    
         
            +
            ]
         
     | 
| 
      
 520 
     | 
    
         
            +
             
     | 
| 
      
 521 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 522 
     | 
    
         
            +
            name = "magnus-macros"
         
     | 
| 
      
 523 
     | 
    
         
            +
            version = "0.6.0"
         
     | 
| 
      
 524 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 525 
     | 
    
         
            +
            checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
         
     | 
| 
      
 526 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 527 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 528 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 529 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 530 
     | 
    
         
            +
            ]
         
     | 
| 
      
 531 
     | 
    
         
            +
             
     | 
| 
      
 532 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 533 
     | 
    
         
            +
            name = "memchr"
         
     | 
| 
      
 534 
     | 
    
         
            +
            version = "2.7.4"
         
     | 
| 
      
 535 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 536 
     | 
    
         
            +
            checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
         
     | 
| 
      
 537 
     | 
    
         
            +
             
     | 
| 
      
 538 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 539 
     | 
    
         
            +
            name = "minimal-lexical"
         
     | 
| 
      
 540 
     | 
    
         
            +
            version = "0.2.1"
         
     | 
| 
      
 541 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 542 
     | 
    
         
            +
            checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
         
     | 
| 
      
 543 
     | 
    
         
            +
             
     | 
| 
      
 544 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 545 
     | 
    
         
            +
            name = "miniz_oxide"
         
     | 
| 
      
 546 
     | 
    
         
            +
            version = "0.8.2"
         
     | 
| 
      
 547 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 548 
     | 
    
         
            +
            checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
         
     | 
| 
      
 549 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 550 
     | 
    
         
            +
             "adler2",
         
     | 
| 
      
 551 
     | 
    
         
            +
            ]
         
     | 
| 
      
 552 
     | 
    
         
            +
             
     | 
| 
      
 553 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 554 
     | 
    
         
            +
            name = "nom"
         
     | 
| 
      
 555 
     | 
    
         
            +
            version = "7.1.3"
         
     | 
| 
      
 556 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 557 
     | 
    
         
            +
            checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
         
     | 
| 
      
 558 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 559 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 560 
     | 
    
         
            +
             "minimal-lexical",
         
     | 
| 
      
 561 
     | 
    
         
            +
            ]
         
     | 
| 
      
 562 
     | 
    
         
            +
             
     | 
| 
      
 563 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 564 
     | 
    
         
            +
            name = "num-conv"
         
     | 
| 
      
 565 
     | 
    
         
            +
            version = "0.1.0"
         
     | 
| 
      
 566 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 567 
     | 
    
         
            +
            checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
         
     | 
| 
      
 568 
     | 
    
         
            +
             
     | 
| 
      
 569 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 570 
     | 
    
         
            +
            name = "once_cell"
         
     | 
| 
      
 571 
     | 
    
         
            +
            version = "1.20.2"
         
     | 
| 
      
 572 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 573 
     | 
    
         
            +
            checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
         
     | 
| 
      
 574 
     | 
    
         
            +
             
     | 
| 
      
 575 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 576 
     | 
    
         
            +
            name = "onig"
         
     | 
| 
      
 577 
     | 
    
         
            +
            version = "6.4.0"
         
     | 
| 
      
 578 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 579 
     | 
    
         
            +
            checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
         
     | 
| 
      
 580 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 581 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
      
 582 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 583 
     | 
    
         
            +
             "once_cell",
         
     | 
| 
      
 584 
     | 
    
         
            +
             "onig_sys",
         
     | 
| 
      
 585 
     | 
    
         
            +
            ]
         
     | 
| 
      
 586 
     | 
    
         
            +
             
     | 
| 
      
 587 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 588 
     | 
    
         
            +
            name = "onig_sys"
         
     | 
| 
      
 589 
     | 
    
         
            +
            version = "69.8.1"
         
     | 
| 
      
 590 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 591 
     | 
    
         
            +
            checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
         
     | 
| 
      
 592 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 593 
     | 
    
         
            +
             "cc",
         
     | 
| 
      
 594 
     | 
    
         
            +
             "pkg-config",
         
     | 
| 
      
 595 
     | 
    
         
            +
            ]
         
     | 
| 
      
 596 
     | 
    
         
            +
             
     | 
| 
      
 597 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 598 
     | 
    
         
            +
            name = "phf"
         
     | 
| 
      
 599 
     | 
    
         
            +
            version = "0.11.2"
         
     | 
| 
      
 600 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 601 
     | 
    
         
            +
            checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
         
     | 
| 
      
 602 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 603 
     | 
    
         
            +
             "phf_shared",
         
     | 
| 
      
 604 
     | 
    
         
            +
            ]
         
     | 
| 
      
 605 
     | 
    
         
            +
             
     | 
| 
      
 606 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 607 
     | 
    
         
            +
            name = "phf_shared"
         
     | 
| 
      
 608 
     | 
    
         
            +
            version = "0.11.2"
         
     | 
| 
      
 609 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 610 
     | 
    
         
            +
            checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
         
     | 
| 
      
 611 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 612 
     | 
    
         
            +
             "siphasher",
         
     | 
| 
      
 613 
     | 
    
         
            +
            ]
         
     | 
| 
      
 614 
     | 
    
         
            +
             
     | 
| 
      
 615 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 616 
     | 
    
         
            +
            name = "pkg-config"
         
     | 
| 
      
 617 
     | 
    
         
            +
            version = "0.3.31"
         
     | 
| 
      
 618 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 619 
     | 
    
         
            +
            checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
         
     | 
| 
      
 620 
     | 
    
         
            +
             
     | 
| 
      
 621 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 622 
     | 
    
         
            +
            name = "plist"
         
     | 
| 
      
 623 
     | 
    
         
            +
            version = "1.7.0"
         
     | 
| 
      
 624 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 625 
     | 
    
         
            +
            checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
         
     | 
| 
      
 626 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 627 
     | 
    
         
            +
             "base64",
         
     | 
| 
      
 628 
     | 
    
         
            +
             "indexmap",
         
     | 
| 
      
 629 
     | 
    
         
            +
             "quick-xml",
         
     | 
| 
      
 630 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 631 
     | 
    
         
            +
             "time",
         
     | 
| 
      
 632 
     | 
    
         
            +
            ]
         
     | 
| 
      
 633 
     | 
    
         
            +
             
     | 
| 
      
 634 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 635 
     | 
    
         
            +
            name = "powerfmt"
         
     | 
| 
      
 636 
     | 
    
         
            +
            version = "0.2.0"
         
     | 
| 
      
 637 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 638 
     | 
    
         
            +
            checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
         
     | 
| 
      
 639 
     | 
    
         
            +
             
     | 
| 
      
 640 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 641 
     | 
    
         
            +
            name = "prettyplease"
         
     | 
| 
      
 642 
     | 
    
         
            +
            version = "0.2.25"
         
     | 
| 
      
 643 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 644 
     | 
    
         
            +
            checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
         
     | 
| 
      
 645 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 646 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 647 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 648 
     | 
    
         
            +
            ]
         
     | 
| 
      
 649 
     | 
    
         
            +
             
     | 
| 
      
 650 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 651 
     | 
    
         
            +
            name = "proc-macro2"
         
     | 
| 
      
 652 
     | 
    
         
            +
            version = "1.0.92"
         
     | 
| 
      
 653 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 654 
     | 
    
         
            +
            checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
         
     | 
| 
      
 655 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 656 
     | 
    
         
            +
             "unicode-ident",
         
     | 
| 
      
 657 
     | 
    
         
            +
            ]
         
     | 
| 
      
 658 
     | 
    
         
            +
             
     | 
| 
      
 659 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 660 
     | 
    
         
            +
            name = "quick-xml"
         
     | 
| 
      
 661 
     | 
    
         
            +
            version = "0.32.0"
         
     | 
| 
      
 662 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 663 
     | 
    
         
            +
            checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
         
     | 
| 
      
 664 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 665 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 666 
     | 
    
         
            +
            ]
         
     | 
| 
      
 667 
     | 
    
         
            +
             
     | 
| 
      
 668 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 669 
     | 
    
         
            +
            name = "quote"
         
     | 
| 
      
 670 
     | 
    
         
            +
            version = "1.0.38"
         
     | 
| 
      
 671 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 672 
     | 
    
         
            +
            checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
         
     | 
| 
      
 673 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 674 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 675 
     | 
    
         
            +
            ]
         
     | 
| 
      
 676 
     | 
    
         
            +
             
     | 
| 
      
 677 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 678 
     | 
    
         
            +
            name = "rb-sys"
         
     | 
| 
      
 679 
     | 
    
         
            +
            version = "0.9.111"
         
     | 
| 
      
 680 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 681 
     | 
    
         
            +
            checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
         
     | 
| 
      
 682 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 683 
     | 
    
         
            +
             "rb-sys-build",
         
     | 
| 
      
 684 
     | 
    
         
            +
            ]
         
     | 
| 
      
 685 
     | 
    
         
            +
             
     | 
| 
      
 686 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 687 
     | 
    
         
            +
            name = "rb-sys-build"
         
     | 
| 
      
 688 
     | 
    
         
            +
            version = "0.9.111"
         
     | 
| 
      
 689 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 690 
     | 
    
         
            +
            checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
         
     | 
| 
      
 691 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 692 
     | 
    
         
            +
             "bindgen",
         
     | 
| 
      
 693 
     | 
    
         
            +
             "lazy_static",
         
     | 
| 
      
 694 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 695 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 696 
     | 
    
         
            +
             "regex",
         
     | 
| 
      
 697 
     | 
    
         
            +
             "shell-words",
         
     | 
| 
      
 698 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 699 
     | 
    
         
            +
            ]
         
     | 
| 
      
 700 
     | 
    
         
            +
             
     | 
| 
      
 701 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 702 
     | 
    
         
            +
            name = "rb-sys-env"
         
     | 
| 
      
 703 
     | 
    
         
            +
            version = "0.1.2"
         
     | 
| 
      
 704 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 705 
     | 
    
         
            +
            checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
         
     | 
| 
      
 706 
     | 
    
         
            +
             
     | 
| 
      
 707 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 708 
     | 
    
         
            +
            name = "rctree"
         
     | 
| 
      
 709 
     | 
    
         
            +
            version = "0.6.0"
         
     | 
| 
      
 710 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 711 
     | 
    
         
            +
            checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
         
     | 
| 
      
 712 
     | 
    
         
            +
             
     | 
| 
      
 713 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 714 
     | 
    
         
            +
            name = "regex"
         
     | 
| 
      
 715 
     | 
    
         
            +
            version = "1.11.1"
         
     | 
| 
      
 716 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 717 
     | 
    
         
            +
            checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
         
     | 
| 
      
 718 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 719 
     | 
    
         
            +
             "aho-corasick",
         
     | 
| 
      
 720 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 721 
     | 
    
         
            +
             "regex-automata",
         
     | 
| 
      
 722 
     | 
    
         
            +
             "regex-syntax",
         
     | 
| 
      
 723 
     | 
    
         
            +
            ]
         
     | 
| 
      
 724 
     | 
    
         
            +
             
     | 
| 
      
 725 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 726 
     | 
    
         
            +
            name = "regex-automata"
         
     | 
| 
      
 727 
     | 
    
         
            +
            version = "0.4.9"
         
     | 
| 
      
 728 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 729 
     | 
    
         
            +
            checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
         
     | 
| 
      
 730 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 731 
     | 
    
         
            +
             "aho-corasick",
         
     | 
| 
      
 732 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 733 
     | 
    
         
            +
             "regex-syntax",
         
     | 
| 
      
 734 
     | 
    
         
            +
            ]
         
     | 
| 
      
 735 
     | 
    
         
            +
             
     | 
| 
      
 736 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 737 
     | 
    
         
            +
            name = "regex-syntax"
         
     | 
| 
      
 738 
     | 
    
         
            +
            version = "0.8.5"
         
     | 
| 
      
 739 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 740 
     | 
    
         
            +
            checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
         
     | 
| 
      
 741 
     | 
    
         
            +
             
     | 
| 
      
 742 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 743 
     | 
    
         
            +
            name = "rustc-hash"
         
     | 
| 
      
 744 
     | 
    
         
            +
            version = "1.1.0"
         
     | 
| 
      
 745 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 746 
     | 
    
         
            +
            checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
         
     | 
| 
      
 747 
     | 
    
         
            +
             
     | 
| 
      
 748 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 749 
     | 
    
         
            +
            name = "rustix"
         
     | 
| 
      
 750 
     | 
    
         
            +
            version = "0.38.42"
         
     | 
| 
      
 751 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 752 
     | 
    
         
            +
            checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
         
     | 
| 
      
 753 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 754 
     | 
    
         
            +
             "bitflags 2.6.0",
         
     | 
| 
      
 755 
     | 
    
         
            +
             "errno",
         
     | 
| 
      
 756 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 757 
     | 
    
         
            +
             "linux-raw-sys",
         
     | 
| 
      
 758 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 759 
     | 
    
         
            +
            ]
         
     | 
| 
      
 760 
     | 
    
         
            +
             
     | 
| 
      
 761 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 762 
     | 
    
         
            +
            name = "rustversion"
         
     | 
| 
      
 763 
     | 
    
         
            +
            version = "1.0.19"
         
     | 
| 
      
 764 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 765 
     | 
    
         
            +
            checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
         
     | 
| 
      
 766 
     | 
    
         
            +
             
     | 
| 
      
 767 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 768 
     | 
    
         
            +
            name = "ryu"
         
     | 
| 
      
 769 
     | 
    
         
            +
            version = "1.0.18"
         
     | 
| 
      
 770 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 771 
     | 
    
         
            +
            checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
         
     | 
| 
      
 772 
     | 
    
         
            +
             
     | 
| 
      
 773 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 774 
     | 
    
         
            +
            name = "same-file"
         
     | 
| 
      
 775 
     | 
    
         
            +
            version = "1.0.6"
         
     | 
| 
      
 776 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 777 
     | 
    
         
            +
            checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
         
     | 
| 
      
 778 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 779 
     | 
    
         
            +
             "winapi-util",
         
     | 
| 
      
 780 
     | 
    
         
            +
            ]
         
     | 
| 
      
 781 
     | 
    
         
            +
             
     | 
| 
      
 782 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 783 
     | 
    
         
            +
            name = "seq-macro"
         
     | 
| 
      
 784 
     | 
    
         
            +
            version = "0.3.5"
         
     | 
| 
      
 785 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 786 
     | 
    
         
            +
            checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
         
     | 
| 
      
 787 
     | 
    
         
            +
             
     | 
| 
      
 788 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 789 
     | 
    
         
            +
            name = "serde"
         
     | 
| 
      
 790 
     | 
    
         
            +
            version = "1.0.217"
         
     | 
| 
      
 791 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 792 
     | 
    
         
            +
            checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
         
     | 
| 
      
 793 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 794 
     | 
    
         
            +
             "serde_derive",
         
     | 
| 
      
 795 
     | 
    
         
            +
            ]
         
     | 
| 
      
 796 
     | 
    
         
            +
             
     | 
| 
      
 797 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 798 
     | 
    
         
            +
            name = "serde_derive"
         
     | 
| 
      
 799 
     | 
    
         
            +
            version = "1.0.217"
         
     | 
| 
      
 800 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 801 
     | 
    
         
            +
            checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
         
     | 
| 
      
 802 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 803 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 804 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 805 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 806 
     | 
    
         
            +
            ]
         
     | 
| 
      
 807 
     | 
    
         
            +
             
     | 
| 
      
 808 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 809 
     | 
    
         
            +
            name = "serde_json"
         
     | 
| 
      
 810 
     | 
    
         
            +
            version = "1.0.134"
         
     | 
| 
      
 811 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 812 
     | 
    
         
            +
            checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
         
     | 
| 
      
 813 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 814 
     | 
    
         
            +
             "itoa",
         
     | 
| 
      
 815 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 816 
     | 
    
         
            +
             "ryu",
         
     | 
| 
      
 817 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 818 
     | 
    
         
            +
            ]
         
     | 
| 
      
 819 
     | 
    
         
            +
             
     | 
| 
      
 820 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 821 
     | 
    
         
            +
            name = "shell-words"
         
     | 
| 
      
 822 
     | 
    
         
            +
            version = "1.1.0"
         
     | 
| 
      
 823 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 824 
     | 
    
         
            +
            checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
         
     | 
| 
      
 825 
     | 
    
         
            +
             
     | 
| 
      
 826 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 827 
     | 
    
         
            +
            name = "shlex"
         
     | 
| 
      
 828 
     | 
    
         
            +
            version = "1.3.0"
         
     | 
| 
      
 829 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 830 
     | 
    
         
            +
            checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
         
     | 
| 
      
 831 
     | 
    
         
            +
             
     | 
| 
      
 832 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 833 
     | 
    
         
            +
            name = "siphasher"
         
     | 
| 
      
 834 
     | 
    
         
            +
            version = "0.3.11"
         
     | 
| 
      
 835 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 836 
     | 
    
         
            +
            checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
         
     | 
| 
      
 837 
     | 
    
         
            +
             
     | 
| 
      
 838 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 839 
     | 
    
         
            +
            name = "slug"
         
     | 
| 
      
 840 
     | 
    
         
            +
            version = "0.1.6"
         
     | 
| 
      
 841 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 842 
     | 
    
         
            +
            checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
         
     | 
| 
      
 843 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 844 
     | 
    
         
            +
             "deunicode",
         
     | 
| 
      
 845 
     | 
    
         
            +
             "wasm-bindgen",
         
     | 
| 
      
 846 
     | 
    
         
            +
            ]
         
     | 
| 
      
 847 
     | 
    
         
            +
             
     | 
| 
      
 848 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 849 
     | 
    
         
            +
            name = "strsim"
         
     | 
| 
      
 850 
     | 
    
         
            +
            version = "0.11.1"
         
     | 
| 
      
 851 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 852 
     | 
    
         
            +
            checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
         
     | 
| 
      
 853 
     | 
    
         
            +
             
     | 
| 
      
 854 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 855 
     | 
    
         
            +
            name = "syn"
         
     | 
| 
      
 856 
     | 
    
         
            +
            version = "2.0.93"
         
     | 
| 
      
 857 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 858 
     | 
    
         
            +
            checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
         
     | 
| 
      
 859 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 860 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 861 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 862 
     | 
    
         
            +
             "unicode-ident",
         
     | 
| 
      
 863 
     | 
    
         
            +
            ]
         
     | 
| 
      
 864 
     | 
    
         
            +
             
     | 
| 
      
 865 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 866 
     | 
    
         
            +
            name = "syntect"
         
     | 
| 
      
 867 
     | 
    
         
            +
            version = "5.2.0"
         
     | 
| 
      
 868 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 869 
     | 
    
         
            +
            checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
         
     | 
| 
      
 870 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 871 
     | 
    
         
            +
             "bincode",
         
     | 
| 
      
 872 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
      
 873 
     | 
    
         
            +
             "fancy-regex",
         
     | 
| 
      
 874 
     | 
    
         
            +
             "flate2",
         
     | 
| 
      
 875 
     | 
    
         
            +
             "fnv",
         
     | 
| 
      
 876 
     | 
    
         
            +
             "once_cell",
         
     | 
| 
      
 877 
     | 
    
         
            +
             "onig",
         
     | 
| 
      
 878 
     | 
    
         
            +
             "plist",
         
     | 
| 
      
 879 
     | 
    
         
            +
             "regex-syntax",
         
     | 
| 
      
 880 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 881 
     | 
    
         
            +
             "serde_derive",
         
     | 
| 
      
 882 
     | 
    
         
            +
             "serde_json",
         
     | 
| 
      
 883 
     | 
    
         
            +
             "thiserror",
         
     | 
| 
      
 884 
     | 
    
         
            +
             "walkdir",
         
     | 
| 
      
 885 
     | 
    
         
            +
             "yaml-rust",
         
     | 
| 
      
 886 
     | 
    
         
            +
            ]
         
     | 
| 
      
 887 
     | 
    
         
            +
             
     | 
| 
      
 888 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 889 
     | 
    
         
            +
            name = "terminal_size"
         
     | 
| 
      
 890 
     | 
    
         
            +
            version = "0.4.1"
         
     | 
| 
      
 891 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 892 
     | 
    
         
            +
            checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9"
         
     | 
| 
      
 893 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 894 
     | 
    
         
            +
             "rustix",
         
     | 
| 
      
 895 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 896 
     | 
    
         
            +
            ]
         
     | 
| 
      
 897 
     | 
    
         
            +
             
     | 
| 
      
 898 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 899 
     | 
    
         
            +
            name = "thiserror"
         
     | 
| 
      
 900 
     | 
    
         
            +
            version = "1.0.69"
         
     | 
| 
      
 901 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 902 
     | 
    
         
            +
            checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
         
     | 
| 
      
 903 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 904 
     | 
    
         
            +
             "thiserror-impl",
         
     | 
| 
      
 905 
     | 
    
         
            +
            ]
         
     | 
| 
      
 906 
     | 
    
         
            +
             
     | 
| 
      
 907 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 908 
     | 
    
         
            +
            name = "thiserror-impl"
         
     | 
| 
      
 909 
     | 
    
         
            +
            version = "1.0.69"
         
     | 
| 
      
 910 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 911 
     | 
    
         
            +
            checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
         
     | 
| 
      
 912 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 913 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 914 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 915 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 916 
     | 
    
         
            +
            ]
         
     | 
| 
      
 917 
     | 
    
         
            +
             
     | 
| 
      
 918 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 919 
     | 
    
         
            +
            name = "time"
         
     | 
| 
      
 920 
     | 
    
         
            +
            version = "0.3.37"
         
     | 
| 
      
 921 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 922 
     | 
    
         
            +
            checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
         
     | 
| 
      
 923 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 924 
     | 
    
         
            +
             "deranged",
         
     | 
| 
      
 925 
     | 
    
         
            +
             "itoa",
         
     | 
| 
      
 926 
     | 
    
         
            +
             "num-conv",
         
     | 
| 
      
 927 
     | 
    
         
            +
             "powerfmt",
         
     | 
| 
      
 928 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 929 
     | 
    
         
            +
             "time-core",
         
     | 
| 
      
 930 
     | 
    
         
            +
             "time-macros",
         
     | 
| 
      
 931 
     | 
    
         
            +
            ]
         
     | 
| 
      
 932 
     | 
    
         
            +
             
     | 
| 
      
 933 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 934 
     | 
    
         
            +
            name = "time-core"
         
     | 
| 
      
 935 
     | 
    
         
            +
            version = "0.1.2"
         
     | 
| 
      
 936 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 937 
     | 
    
         
            +
            checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
         
     | 
| 
      
 938 
     | 
    
         
            +
             
     | 
| 
      
 939 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 940 
     | 
    
         
            +
            name = "time-macros"
         
     | 
| 
      
 941 
     | 
    
         
            +
            version = "0.2.19"
         
     | 
| 
      
 942 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 943 
     | 
    
         
            +
            checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
         
     | 
| 
      
 944 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 945 
     | 
    
         
            +
             "num-conv",
         
     | 
| 
      
 946 
     | 
    
         
            +
             "time-core",
         
     | 
| 
      
 947 
     | 
    
         
            +
            ]
         
     | 
| 
      
 948 
     | 
    
         
            +
             
     | 
| 
      
 949 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 950 
     | 
    
         
            +
            name = "tinyvec"
         
     | 
| 
      
 951 
     | 
    
         
            +
            version = "1.8.1"
         
     | 
| 
      
 952 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 953 
     | 
    
         
            +
            checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
         
     | 
| 
      
 954 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 955 
     | 
    
         
            +
             "tinyvec_macros",
         
     | 
| 
      
 956 
     | 
    
         
            +
            ]
         
     | 
| 
      
 957 
     | 
    
         
            +
             
     | 
| 
      
 958 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 959 
     | 
    
         
            +
            name = "tinyvec_macros"
         
     | 
| 
      
 960 
     | 
    
         
            +
            version = "0.1.1"
         
     | 
| 
      
 961 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 962 
     | 
    
         
            +
            checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
         
     | 
| 
      
 963 
     | 
    
         
            +
             
     | 
| 
      
 964 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 965 
     | 
    
         
            +
            name = "typed-arena"
         
     | 
| 
      
 966 
     | 
    
         
            +
            version = "2.0.2"
         
     | 
| 
      
 967 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 968 
     | 
    
         
            +
            checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
         
     | 
| 
      
 969 
     | 
    
         
            +
             
     | 
| 
      
 970 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 971 
     | 
    
         
            +
            name = "unicode-ident"
         
     | 
| 
      
 972 
     | 
    
         
            +
            version = "1.0.14"
         
     | 
| 
      
 973 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 974 
     | 
    
         
            +
            checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
         
     | 
| 
      
 975 
     | 
    
         
            +
             
     | 
| 
      
 976 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 977 
     | 
    
         
            +
            name = "unicode-normalization"
         
     | 
| 
      
 978 
     | 
    
         
            +
            version = "0.1.24"
         
     | 
| 
      
 979 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 980 
     | 
    
         
            +
            checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
         
     | 
| 
      
 981 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 982 
     | 
    
         
            +
             "tinyvec",
         
     | 
| 
      
 983 
     | 
    
         
            +
            ]
         
     | 
| 
      
 984 
     | 
    
         
            +
             
     | 
| 
      
 985 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 986 
     | 
    
         
            +
            name = "unicode_categories"
         
     | 
| 
      
 987 
     | 
    
         
            +
            version = "0.1.1"
         
     | 
| 
      
 988 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 989 
     | 
    
         
            +
            checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
         
     | 
| 
      
 990 
     | 
    
         
            +
             
     | 
| 
      
 991 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 992 
     | 
    
         
            +
            name = "utf8parse"
         
     | 
| 
      
 993 
     | 
    
         
            +
            version = "0.2.2"
         
     | 
| 
      
 994 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 995 
     | 
    
         
            +
            checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
         
     | 
| 
      
 996 
     | 
    
         
            +
             
     | 
| 
      
 997 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 998 
     | 
    
         
            +
            name = "walkdir"
         
     | 
| 
      
 999 
     | 
    
         
            +
            version = "2.5.0"
         
     | 
| 
      
 1000 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1001 
     | 
    
         
            +
            checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
         
     | 
| 
      
 1002 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1003 
     | 
    
         
            +
             "same-file",
         
     | 
| 
      
 1004 
     | 
    
         
            +
             "winapi-util",
         
     | 
| 
      
 1005 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1006 
     | 
    
         
            +
             
     | 
| 
      
 1007 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1008 
     | 
    
         
            +
            name = "wasm-bindgen"
         
     | 
| 
      
 1009 
     | 
    
         
            +
            version = "0.2.99"
         
     | 
| 
      
 1010 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1011 
     | 
    
         
            +
            checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
         
     | 
| 
      
 1012 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1013 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 1014 
     | 
    
         
            +
             "once_cell",
         
     | 
| 
      
 1015 
     | 
    
         
            +
             "wasm-bindgen-macro",
         
     | 
| 
      
 1016 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1017 
     | 
    
         
            +
             
     | 
| 
      
 1018 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1019 
     | 
    
         
            +
            name = "wasm-bindgen-backend"
         
     | 
| 
      
 1020 
     | 
    
         
            +
            version = "0.2.99"
         
     | 
| 
      
 1021 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1022 
     | 
    
         
            +
            checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
         
     | 
| 
      
 1023 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1024 
     | 
    
         
            +
             "bumpalo",
         
     | 
| 
      
 1025 
     | 
    
         
            +
             "log",
         
     | 
| 
      
 1026 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 1027 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 1028 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 1029 
     | 
    
         
            +
             "wasm-bindgen-shared",
         
     | 
| 
      
 1030 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1031 
     | 
    
         
            +
             
     | 
| 
      
 1032 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1033 
     | 
    
         
            +
            name = "wasm-bindgen-macro"
         
     | 
| 
      
 1034 
     | 
    
         
            +
            version = "0.2.99"
         
     | 
| 
      
 1035 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1036 
     | 
    
         
            +
            checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
         
     | 
| 
      
 1037 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1038 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 1039 
     | 
    
         
            +
             "wasm-bindgen-macro-support",
         
     | 
| 
      
 1040 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1041 
     | 
    
         
            +
             
     | 
| 
      
 1042 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1043 
     | 
    
         
            +
            name = "wasm-bindgen-macro-support"
         
     | 
| 
      
 1044 
     | 
    
         
            +
            version = "0.2.99"
         
     | 
| 
      
 1045 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1046 
     | 
    
         
            +
            checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
         
     | 
| 
      
 1047 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1048 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 1049 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 1050 
     | 
    
         
            +
             "syn",
         
     | 
| 
      
 1051 
     | 
    
         
            +
             "wasm-bindgen-backend",
         
     | 
| 
      
 1052 
     | 
    
         
            +
             "wasm-bindgen-shared",
         
     | 
| 
      
 1053 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1054 
     | 
    
         
            +
             
     | 
| 
      
 1055 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1056 
     | 
    
         
            +
            name = "wasm-bindgen-shared"
         
     | 
| 
      
 1057 
     | 
    
         
            +
            version = "0.2.99"
         
     | 
| 
      
 1058 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1059 
     | 
    
         
            +
            checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
         
     | 
| 
      
 1060 
     | 
    
         
            +
             
     | 
| 
      
 1061 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1062 
     | 
    
         
            +
            name = "winapi-util"
         
     | 
| 
      
 1063 
     | 
    
         
            +
            version = "0.1.9"
         
     | 
| 
      
 1064 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1065 
     | 
    
         
            +
            checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
         
     | 
| 
      
 1066 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1067 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 1068 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1069 
     | 
    
         
            +
             
     | 
| 
      
 1070 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1071 
     | 
    
         
            +
            name = "windows-sys"
         
     | 
| 
      
 1072 
     | 
    
         
            +
            version = "0.59.0"
         
     | 
| 
      
 1073 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1074 
     | 
    
         
            +
            checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
         
     | 
| 
      
 1075 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1076 
     | 
    
         
            +
             "windows-targets",
         
     | 
| 
      
 1077 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1078 
     | 
    
         
            +
             
     | 
| 
      
 1079 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1080 
     | 
    
         
            +
            name = "windows-targets"
         
     | 
| 
      
 1081 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1082 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1083 
     | 
    
         
            +
            checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
         
     | 
| 
      
 1084 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1085 
     | 
    
         
            +
             "windows_aarch64_gnullvm",
         
     | 
| 
      
 1086 
     | 
    
         
            +
             "windows_aarch64_msvc",
         
     | 
| 
      
 1087 
     | 
    
         
            +
             "windows_i686_gnu",
         
     | 
| 
      
 1088 
     | 
    
         
            +
             "windows_i686_gnullvm",
         
     | 
| 
      
 1089 
     | 
    
         
            +
             "windows_i686_msvc",
         
     | 
| 
      
 1090 
     | 
    
         
            +
             "windows_x86_64_gnu",
         
     | 
| 
      
 1091 
     | 
    
         
            +
             "windows_x86_64_gnullvm",
         
     | 
| 
      
 1092 
     | 
    
         
            +
             "windows_x86_64_msvc",
         
     | 
| 
      
 1093 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1094 
     | 
    
         
            +
             
     | 
| 
      
 1095 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1096 
     | 
    
         
            +
            name = "windows_aarch64_gnullvm"
         
     | 
| 
      
 1097 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1098 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1099 
     | 
    
         
            +
            checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
         
     | 
| 
      
 1100 
     | 
    
         
            +
             
     | 
| 
      
 1101 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1102 
     | 
    
         
            +
            name = "windows_aarch64_msvc"
         
     | 
| 
      
 1103 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1104 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1105 
     | 
    
         
            +
            checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
         
     | 
| 
      
 1106 
     | 
    
         
            +
             
     | 
| 
      
 1107 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1108 
     | 
    
         
            +
            name = "windows_i686_gnu"
         
     | 
| 
      
 1109 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1110 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1111 
     | 
    
         
            +
            checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
         
     | 
| 
      
 1112 
     | 
    
         
            +
             
     | 
| 
      
 1113 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1114 
     | 
    
         
            +
            name = "windows_i686_gnullvm"
         
     | 
| 
      
 1115 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1116 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1117 
     | 
    
         
            +
            checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
         
     | 
| 
      
 1118 
     | 
    
         
            +
             
     | 
| 
      
 1119 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1120 
     | 
    
         
            +
            name = "windows_i686_msvc"
         
     | 
| 
      
 1121 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1122 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1123 
     | 
    
         
            +
            checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
         
     | 
| 
      
 1124 
     | 
    
         
            +
             
     | 
| 
      
 1125 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1126 
     | 
    
         
            +
            name = "windows_x86_64_gnu"
         
     | 
| 
      
 1127 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1128 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1129 
     | 
    
         
            +
            checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
         
     | 
| 
      
 1130 
     | 
    
         
            +
             
     | 
| 
      
 1131 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1132 
     | 
    
         
            +
            name = "windows_x86_64_gnullvm"
         
     | 
| 
      
 1133 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1134 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1135 
     | 
    
         
            +
            checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
         
     | 
| 
      
 1136 
     | 
    
         
            +
             
     | 
| 
      
 1137 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1138 
     | 
    
         
            +
            name = "windows_x86_64_msvc"
         
     | 
| 
      
 1139 
     | 
    
         
            +
            version = "0.52.6"
         
     | 
| 
      
 1140 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1141 
     | 
    
         
            +
            checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
         
     | 
| 
      
 1142 
     | 
    
         
            +
             
     | 
| 
      
 1143 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1144 
     | 
    
         
            +
            name = "xdg"
         
     | 
| 
      
 1145 
     | 
    
         
            +
            version = "2.5.2"
         
     | 
| 
      
 1146 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1147 
     | 
    
         
            +
            checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
         
     | 
| 
      
 1148 
     | 
    
         
            +
             
     | 
| 
      
 1149 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1150 
     | 
    
         
            +
            name = "yaml-rust"
         
     | 
| 
      
 1151 
     | 
    
         
            +
            version = "0.4.5"
         
     | 
| 
      
 1152 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1153 
     | 
    
         
            +
            checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
         
     | 
| 
      
 1154 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1155 
     | 
    
         
            +
             "linked-hash-map",
         
     | 
| 
      
 1156 
     | 
    
         
            +
            ]
         
     |