prometheus-client-mmap 0.20.3-x86_64-linux
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 +7 -0
 - data/README.md +253 -0
 - data/ext/fast_mmaped_file/extconf.rb +30 -0
 - data/ext/fast_mmaped_file/fast_mmaped_file.c +122 -0
 - data/ext/fast_mmaped_file/file_format.c +5 -0
 - data/ext/fast_mmaped_file/file_format.h +11 -0
 - data/ext/fast_mmaped_file/file_parsing.c +195 -0
 - data/ext/fast_mmaped_file/file_parsing.h +27 -0
 - data/ext/fast_mmaped_file/file_reading.c +102 -0
 - data/ext/fast_mmaped_file/file_reading.h +30 -0
 - data/ext/fast_mmaped_file/globals.h +14 -0
 - data/ext/fast_mmaped_file/mmap.c +427 -0
 - data/ext/fast_mmaped_file/mmap.h +61 -0
 - data/ext/fast_mmaped_file/rendering.c +199 -0
 - data/ext/fast_mmaped_file/rendering.h +8 -0
 - data/ext/fast_mmaped_file/utils.c +56 -0
 - data/ext/fast_mmaped_file/utils.h +22 -0
 - data/ext/fast_mmaped_file/value_access.c +242 -0
 - data/ext/fast_mmaped_file/value_access.h +15 -0
 - data/ext/fast_mmaped_file_rs/.cargo/config.toml +23 -0
 - data/ext/fast_mmaped_file_rs/Cargo.lock +790 -0
 - data/ext/fast_mmaped_file_rs/Cargo.toml +30 -0
 - data/ext/fast_mmaped_file_rs/README.md +52 -0
 - data/ext/fast_mmaped_file_rs/extconf.rb +30 -0
 - data/ext/fast_mmaped_file_rs/src/error.rs +174 -0
 - data/ext/fast_mmaped_file_rs/src/file_entry.rs +579 -0
 - data/ext/fast_mmaped_file_rs/src/file_info.rs +190 -0
 - data/ext/fast_mmaped_file_rs/src/lib.rs +79 -0
 - data/ext/fast_mmaped_file_rs/src/macros.rs +14 -0
 - data/ext/fast_mmaped_file_rs/src/map.rs +492 -0
 - data/ext/fast_mmaped_file_rs/src/mmap.rs +151 -0
 - data/ext/fast_mmaped_file_rs/src/parser.rs +346 -0
 - data/ext/fast_mmaped_file_rs/src/raw_entry.rs +473 -0
 - data/ext/fast_mmaped_file_rs/src/testhelper.rs +222 -0
 - data/ext/fast_mmaped_file_rs/src/util.rs +121 -0
 - data/lib/2.7/fast_mmaped_file.so +0 -0
 - data/lib/2.7/fast_mmaped_file_rs.so +0 -0
 - data/lib/3.0/fast_mmaped_file.so +0 -0
 - data/lib/3.0/fast_mmaped_file_rs.so +0 -0
 - data/lib/3.1/fast_mmaped_file.so +0 -0
 - data/lib/3.1/fast_mmaped_file_rs.so +0 -0
 - data/lib/3.2/fast_mmaped_file.so +0 -0
 - data/lib/3.2/fast_mmaped_file_rs.so +0 -0
 - data/lib/prometheus/client/configuration.rb +23 -0
 - data/lib/prometheus/client/counter.rb +27 -0
 - data/lib/prometheus/client/formats/text.rb +118 -0
 - data/lib/prometheus/client/gauge.rb +40 -0
 - data/lib/prometheus/client/helper/entry_parser.rb +132 -0
 - data/lib/prometheus/client/helper/file_locker.rb +50 -0
 - data/lib/prometheus/client/helper/json_parser.rb +23 -0
 - data/lib/prometheus/client/helper/metrics_processing.rb +45 -0
 - data/lib/prometheus/client/helper/metrics_representation.rb +51 -0
 - data/lib/prometheus/client/helper/mmaped_file.rb +64 -0
 - data/lib/prometheus/client/helper/plain_file.rb +29 -0
 - data/lib/prometheus/client/histogram.rb +80 -0
 - data/lib/prometheus/client/label_set_validator.rb +86 -0
 - data/lib/prometheus/client/metric.rb +80 -0
 - data/lib/prometheus/client/mmaped_dict.rb +79 -0
 - data/lib/prometheus/client/mmaped_value.rb +154 -0
 - data/lib/prometheus/client/page_size.rb +17 -0
 - data/lib/prometheus/client/push.rb +203 -0
 - data/lib/prometheus/client/rack/collector.rb +88 -0
 - data/lib/prometheus/client/rack/exporter.rb +96 -0
 - data/lib/prometheus/client/registry.rb +65 -0
 - data/lib/prometheus/client/simple_value.rb +31 -0
 - data/lib/prometheus/client/summary.rb +69 -0
 - data/lib/prometheus/client/support/unicorn.rb +35 -0
 - data/lib/prometheus/client/uses_value_type.rb +20 -0
 - data/lib/prometheus/client/version.rb +5 -0
 - data/lib/prometheus/client.rb +58 -0
 - data/lib/prometheus.rb +3 -0
 - data/vendor/c/hashmap/.gitignore +52 -0
 - data/vendor/c/hashmap/LICENSE +21 -0
 - data/vendor/c/hashmap/README.md +90 -0
 - data/vendor/c/hashmap/_config.yml +1 -0
 - data/vendor/c/hashmap/src/hashmap.c +692 -0
 - data/vendor/c/hashmap/src/hashmap.h +267 -0
 - data/vendor/c/hashmap/test/Makefile +22 -0
 - data/vendor/c/hashmap/test/hashmap_test.c +608 -0
 - data/vendor/c/jsmn/.travis.yml +4 -0
 - data/vendor/c/jsmn/LICENSE +20 -0
 - data/vendor/c/jsmn/Makefile +41 -0
 - data/vendor/c/jsmn/README.md +168 -0
 - data/vendor/c/jsmn/example/jsondump.c +126 -0
 - data/vendor/c/jsmn/example/simple.c +76 -0
 - data/vendor/c/jsmn/jsmn.c +314 -0
 - data/vendor/c/jsmn/jsmn.h +76 -0
 - data/vendor/c/jsmn/library.json +16 -0
 - data/vendor/c/jsmn/test/test.h +27 -0
 - data/vendor/c/jsmn/test/tests.c +407 -0
 - data/vendor/c/jsmn/test/testutil.h +94 -0
 - metadata +243 -0
 
| 
         @@ -0,0 +1,790 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # This file is automatically @generated by Cargo.
         
     | 
| 
      
 2 
     | 
    
         
            +
            # It is not intended for manual editing.
         
     | 
| 
      
 3 
     | 
    
         
            +
            version = 3
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 6 
     | 
    
         
            +
            name = "ahash"
         
     | 
| 
      
 7 
     | 
    
         
            +
            version = "0.8.3"
         
     | 
| 
      
 8 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 9 
     | 
    
         
            +
            checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
         
     | 
| 
      
 10 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 11 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 12 
     | 
    
         
            +
             "once_cell",
         
     | 
| 
      
 13 
     | 
    
         
            +
             "version_check",
         
     | 
| 
      
 14 
     | 
    
         
            +
            ]
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 17 
     | 
    
         
            +
            name = "aho-corasick"
         
     | 
| 
      
 18 
     | 
    
         
            +
            version = "0.7.20"
         
     | 
| 
      
 19 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 20 
     | 
    
         
            +
            checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
         
     | 
| 
      
 21 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 22 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 23 
     | 
    
         
            +
            ]
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 26 
     | 
    
         
            +
            name = "autocfg"
         
     | 
| 
      
 27 
     | 
    
         
            +
            version = "1.1.0"
         
     | 
| 
      
 28 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 29 
     | 
    
         
            +
            checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 32 
     | 
    
         
            +
            name = "bindgen"
         
     | 
| 
      
 33 
     | 
    
         
            +
            version = "0.60.1"
         
     | 
| 
      
 34 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 35 
     | 
    
         
            +
            checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
         
     | 
| 
      
 36 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 37 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
      
 38 
     | 
    
         
            +
             "cexpr",
         
     | 
| 
      
 39 
     | 
    
         
            +
             "clang-sys",
         
     | 
| 
      
 40 
     | 
    
         
            +
             "lazy_static",
         
     | 
| 
      
 41 
     | 
    
         
            +
             "lazycell",
         
     | 
| 
      
 42 
     | 
    
         
            +
             "peeking_take_while",
         
     | 
| 
      
 43 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 44 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 45 
     | 
    
         
            +
             "regex",
         
     | 
| 
      
 46 
     | 
    
         
            +
             "rustc-hash",
         
     | 
| 
      
 47 
     | 
    
         
            +
             "shlex",
         
     | 
| 
      
 48 
     | 
    
         
            +
            ]
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 51 
     | 
    
         
            +
            name = "bitflags"
         
     | 
| 
      
 52 
     | 
    
         
            +
            version = "1.3.2"
         
     | 
| 
      
 53 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 54 
     | 
    
         
            +
            checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 57 
     | 
    
         
            +
            name = "block-buffer"
         
     | 
| 
      
 58 
     | 
    
         
            +
            version = "0.10.4"
         
     | 
| 
      
 59 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 60 
     | 
    
         
            +
            checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
         
     | 
| 
      
 61 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 62 
     | 
    
         
            +
             "generic-array",
         
     | 
| 
      
 63 
     | 
    
         
            +
            ]
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 66 
     | 
    
         
            +
            name = "bstr"
         
     | 
| 
      
 67 
     | 
    
         
            +
            version = "1.4.0"
         
     | 
| 
      
 68 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 69 
     | 
    
         
            +
            checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
         
     | 
| 
      
 70 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 71 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 72 
     | 
    
         
            +
             "once_cell",
         
     | 
| 
      
 73 
     | 
    
         
            +
             "regex-automata",
         
     | 
| 
      
 74 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 75 
     | 
    
         
            +
            ]
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 78 
     | 
    
         
            +
            name = "cc"
         
     | 
| 
      
 79 
     | 
    
         
            +
            version = "1.0.79"
         
     | 
| 
      
 80 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 81 
     | 
    
         
            +
            checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 84 
     | 
    
         
            +
            name = "cexpr"
         
     | 
| 
      
 85 
     | 
    
         
            +
            version = "0.6.0"
         
     | 
| 
      
 86 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 87 
     | 
    
         
            +
            checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
         
     | 
| 
      
 88 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 89 
     | 
    
         
            +
             "nom",
         
     | 
| 
      
 90 
     | 
    
         
            +
            ]
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 93 
     | 
    
         
            +
            name = "cfg-if"
         
     | 
| 
      
 94 
     | 
    
         
            +
            version = "1.0.0"
         
     | 
| 
      
 95 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 96 
     | 
    
         
            +
            checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 99 
     | 
    
         
            +
            name = "clang-sys"
         
     | 
| 
      
 100 
     | 
    
         
            +
            version = "1.6.1"
         
     | 
| 
      
 101 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 102 
     | 
    
         
            +
            checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
         
     | 
| 
      
 103 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 104 
     | 
    
         
            +
             "glob",
         
     | 
| 
      
 105 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 106 
     | 
    
         
            +
             "libloading",
         
     | 
| 
      
 107 
     | 
    
         
            +
            ]
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 110 
     | 
    
         
            +
            name = "cpufeatures"
         
     | 
| 
      
 111 
     | 
    
         
            +
            version = "0.2.6"
         
     | 
| 
      
 112 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 113 
     | 
    
         
            +
            checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
         
     | 
| 
      
 114 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 115 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 116 
     | 
    
         
            +
            ]
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 119 
     | 
    
         
            +
            name = "crypto-common"
         
     | 
| 
      
 120 
     | 
    
         
            +
            version = "0.1.6"
         
     | 
| 
      
 121 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 122 
     | 
    
         
            +
            checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
         
     | 
| 
      
 123 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 124 
     | 
    
         
            +
             "generic-array",
         
     | 
| 
      
 125 
     | 
    
         
            +
             "typenum",
         
     | 
| 
      
 126 
     | 
    
         
            +
            ]
         
     | 
| 
      
 127 
     | 
    
         
            +
             
     | 
| 
      
 128 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 129 
     | 
    
         
            +
            name = "digest"
         
     | 
| 
      
 130 
     | 
    
         
            +
            version = "0.10.6"
         
     | 
| 
      
 131 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 132 
     | 
    
         
            +
            checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
         
     | 
| 
      
 133 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 134 
     | 
    
         
            +
             "block-buffer",
         
     | 
| 
      
 135 
     | 
    
         
            +
             "crypto-common",
         
     | 
| 
      
 136 
     | 
    
         
            +
            ]
         
     | 
| 
      
 137 
     | 
    
         
            +
             
     | 
| 
      
 138 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 139 
     | 
    
         
            +
            name = "errno"
         
     | 
| 
      
 140 
     | 
    
         
            +
            version = "0.3.0"
         
     | 
| 
      
 141 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 142 
     | 
    
         
            +
            checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0"
         
     | 
| 
      
 143 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 144 
     | 
    
         
            +
             "errno-dragonfly",
         
     | 
| 
      
 145 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 146 
     | 
    
         
            +
             "windows-sys 0.45.0",
         
     | 
| 
      
 147 
     | 
    
         
            +
            ]
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 150 
     | 
    
         
            +
            name = "errno-dragonfly"
         
     | 
| 
      
 151 
     | 
    
         
            +
            version = "0.1.2"
         
     | 
| 
      
 152 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 153 
     | 
    
         
            +
            checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
         
     | 
| 
      
 154 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 155 
     | 
    
         
            +
             "cc",
         
     | 
| 
      
 156 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 157 
     | 
    
         
            +
            ]
         
     | 
| 
      
 158 
     | 
    
         
            +
             
     | 
| 
      
 159 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 160 
     | 
    
         
            +
            name = "fast_mmaped_file_rs"
         
     | 
| 
      
 161 
     | 
    
         
            +
            version = "0.1.0"
         
     | 
| 
      
 162 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 163 
     | 
    
         
            +
             "bstr",
         
     | 
| 
      
 164 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
      
 165 
     | 
    
         
            +
             "indoc",
         
     | 
| 
      
 166 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 167 
     | 
    
         
            +
             "magnus",
         
     | 
| 
      
 168 
     | 
    
         
            +
             "memmap2",
         
     | 
| 
      
 169 
     | 
    
         
            +
             "nix",
         
     | 
| 
      
 170 
     | 
    
         
            +
             "rand",
         
     | 
| 
      
 171 
     | 
    
         
            +
             "rb-sys",
         
     | 
| 
      
 172 
     | 
    
         
            +
             "sha2",
         
     | 
| 
      
 173 
     | 
    
         
            +
             "smallvec",
         
     | 
| 
      
 174 
     | 
    
         
            +
             "tempfile",
         
     | 
| 
      
 175 
     | 
    
         
            +
             "thiserror",
         
     | 
| 
      
 176 
     | 
    
         
            +
            ]
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 179 
     | 
    
         
            +
            name = "fastrand"
         
     | 
| 
      
 180 
     | 
    
         
            +
            version = "1.9.0"
         
     | 
| 
      
 181 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 182 
     | 
    
         
            +
            checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
         
     | 
| 
      
 183 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 184 
     | 
    
         
            +
             "instant",
         
     | 
| 
      
 185 
     | 
    
         
            +
            ]
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 188 
     | 
    
         
            +
            name = "generic-array"
         
     | 
| 
      
 189 
     | 
    
         
            +
            version = "0.14.7"
         
     | 
| 
      
 190 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 191 
     | 
    
         
            +
            checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
         
     | 
| 
      
 192 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 193 
     | 
    
         
            +
             "typenum",
         
     | 
| 
      
 194 
     | 
    
         
            +
             "version_check",
         
     | 
| 
      
 195 
     | 
    
         
            +
            ]
         
     | 
| 
      
 196 
     | 
    
         
            +
             
     | 
| 
      
 197 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 198 
     | 
    
         
            +
            name = "getrandom"
         
     | 
| 
      
 199 
     | 
    
         
            +
            version = "0.2.8"
         
     | 
| 
      
 200 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 201 
     | 
    
         
            +
            checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
         
     | 
| 
      
 202 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 203 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 204 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 205 
     | 
    
         
            +
             "wasi",
         
     | 
| 
      
 206 
     | 
    
         
            +
            ]
         
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 209 
     | 
    
         
            +
            name = "glob"
         
     | 
| 
      
 210 
     | 
    
         
            +
            version = "0.3.1"
         
     | 
| 
      
 211 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 212 
     | 
    
         
            +
            checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 215 
     | 
    
         
            +
            name = "hashbrown"
         
     | 
| 
      
 216 
     | 
    
         
            +
            version = "0.13.2"
         
     | 
| 
      
 217 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 218 
     | 
    
         
            +
            checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
         
     | 
| 
      
 219 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 220 
     | 
    
         
            +
             "ahash",
         
     | 
| 
      
 221 
     | 
    
         
            +
            ]
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 224 
     | 
    
         
            +
            name = "hermit-abi"
         
     | 
| 
      
 225 
     | 
    
         
            +
            version = "0.3.1"
         
     | 
| 
      
 226 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 227 
     | 
    
         
            +
            checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
         
     | 
| 
      
 228 
     | 
    
         
            +
             
     | 
| 
      
 229 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 230 
     | 
    
         
            +
            name = "indoc"
         
     | 
| 
      
 231 
     | 
    
         
            +
            version = "2.0.1"
         
     | 
| 
      
 232 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 233 
     | 
    
         
            +
            checksum = "9f2cb48b81b1dc9f39676bf99f5499babfec7cd8fe14307f7b3d747208fb5690"
         
     | 
| 
      
 234 
     | 
    
         
            +
             
     | 
| 
      
 235 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 236 
     | 
    
         
            +
            name = "instant"
         
     | 
| 
      
 237 
     | 
    
         
            +
            version = "0.1.12"
         
     | 
| 
      
 238 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 239 
     | 
    
         
            +
            checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
         
     | 
| 
      
 240 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 241 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 242 
     | 
    
         
            +
            ]
         
     | 
| 
      
 243 
     | 
    
         
            +
             
     | 
| 
      
 244 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 245 
     | 
    
         
            +
            name = "io-lifetimes"
         
     | 
| 
      
 246 
     | 
    
         
            +
            version = "1.0.10"
         
     | 
| 
      
 247 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 248 
     | 
    
         
            +
            checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
         
     | 
| 
      
 249 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 250 
     | 
    
         
            +
             "hermit-abi",
         
     | 
| 
      
 251 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 252 
     | 
    
         
            +
             "windows-sys 0.48.0",
         
     | 
| 
      
 253 
     | 
    
         
            +
            ]
         
     | 
| 
      
 254 
     | 
    
         
            +
             
     | 
| 
      
 255 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 256 
     | 
    
         
            +
            name = "lazy_static"
         
     | 
| 
      
 257 
     | 
    
         
            +
            version = "1.4.0"
         
     | 
| 
      
 258 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 259 
     | 
    
         
            +
            checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
         
     | 
| 
      
 260 
     | 
    
         
            +
             
     | 
| 
      
 261 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 262 
     | 
    
         
            +
            name = "lazycell"
         
     | 
| 
      
 263 
     | 
    
         
            +
            version = "1.3.0"
         
     | 
| 
      
 264 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 265 
     | 
    
         
            +
            checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
         
     | 
| 
      
 266 
     | 
    
         
            +
             
     | 
| 
      
 267 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 268 
     | 
    
         
            +
            name = "libc"
         
     | 
| 
      
 269 
     | 
    
         
            +
            version = "0.2.141"
         
     | 
| 
      
 270 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 271 
     | 
    
         
            +
            checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
         
     | 
| 
      
 272 
     | 
    
         
            +
             
     | 
| 
      
 273 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 274 
     | 
    
         
            +
            name = "libloading"
         
     | 
| 
      
 275 
     | 
    
         
            +
            version = "0.7.4"
         
     | 
| 
      
 276 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 277 
     | 
    
         
            +
            checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
         
     | 
| 
      
 278 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 279 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 280 
     | 
    
         
            +
             "winapi",
         
     | 
| 
      
 281 
     | 
    
         
            +
            ]
         
     | 
| 
      
 282 
     | 
    
         
            +
             
     | 
| 
      
 283 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 284 
     | 
    
         
            +
            name = "linux-raw-sys"
         
     | 
| 
      
 285 
     | 
    
         
            +
            version = "0.3.1"
         
     | 
| 
      
 286 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 287 
     | 
    
         
            +
            checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
         
     | 
| 
      
 288 
     | 
    
         
            +
             
     | 
| 
      
 289 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 290 
     | 
    
         
            +
            name = "magnus"
         
     | 
| 
      
 291 
     | 
    
         
            +
            version = "0.5.0"
         
     | 
| 
      
 292 
     | 
    
         
            +
            source = "git+https://github.com/matsadler/magnus?branch=main#b10aab48119eb87a872bf0bb4480b1fcebe5d1b9"
         
     | 
| 
      
 293 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 294 
     | 
    
         
            +
             "magnus-macros",
         
     | 
| 
      
 295 
     | 
    
         
            +
             "rb-sys",
         
     | 
| 
      
 296 
     | 
    
         
            +
             "rb-sys-env",
         
     | 
| 
      
 297 
     | 
    
         
            +
             "seq-macro",
         
     | 
| 
      
 298 
     | 
    
         
            +
            ]
         
     | 
| 
      
 299 
     | 
    
         
            +
             
     | 
| 
      
 300 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 301 
     | 
    
         
            +
            name = "magnus-macros"
         
     | 
| 
      
 302 
     | 
    
         
            +
            version = "0.4.0"
         
     | 
| 
      
 303 
     | 
    
         
            +
            source = "git+https://github.com/matsadler/magnus?branch=main#b10aab48119eb87a872bf0bb4480b1fcebe5d1b9"
         
     | 
| 
      
 304 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 305 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 306 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 307 
     | 
    
         
            +
             "syn 2.0.13",
         
     | 
| 
      
 308 
     | 
    
         
            +
            ]
         
     | 
| 
      
 309 
     | 
    
         
            +
             
     | 
| 
      
 310 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 311 
     | 
    
         
            +
            name = "memchr"
         
     | 
| 
      
 312 
     | 
    
         
            +
            version = "2.5.0"
         
     | 
| 
      
 313 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 314 
     | 
    
         
            +
            checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
         
     | 
| 
      
 315 
     | 
    
         
            +
             
     | 
| 
      
 316 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 317 
     | 
    
         
            +
            name = "memmap2"
         
     | 
| 
      
 318 
     | 
    
         
            +
            version = "0.5.10"
         
     | 
| 
      
 319 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 320 
     | 
    
         
            +
            checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
         
     | 
| 
      
 321 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 322 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 323 
     | 
    
         
            +
            ]
         
     | 
| 
      
 324 
     | 
    
         
            +
             
     | 
| 
      
 325 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 326 
     | 
    
         
            +
            name = "memoffset"
         
     | 
| 
      
 327 
     | 
    
         
            +
            version = "0.6.5"
         
     | 
| 
      
 328 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 329 
     | 
    
         
            +
            checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
         
     | 
| 
      
 330 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 331 
     | 
    
         
            +
             "autocfg",
         
     | 
| 
      
 332 
     | 
    
         
            +
            ]
         
     | 
| 
      
 333 
     | 
    
         
            +
             
     | 
| 
      
 334 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 335 
     | 
    
         
            +
            name = "minimal-lexical"
         
     | 
| 
      
 336 
     | 
    
         
            +
            version = "0.2.1"
         
     | 
| 
      
 337 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 338 
     | 
    
         
            +
            checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
         
     | 
| 
      
 339 
     | 
    
         
            +
             
     | 
| 
      
 340 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 341 
     | 
    
         
            +
            name = "nix"
         
     | 
| 
      
 342 
     | 
    
         
            +
            version = "0.25.1"
         
     | 
| 
      
 343 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 344 
     | 
    
         
            +
            checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
         
     | 
| 
      
 345 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 346 
     | 
    
         
            +
             "autocfg",
         
     | 
| 
      
 347 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
      
 348 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 349 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 350 
     | 
    
         
            +
             "memoffset",
         
     | 
| 
      
 351 
     | 
    
         
            +
             "pin-utils",
         
     | 
| 
      
 352 
     | 
    
         
            +
            ]
         
     | 
| 
      
 353 
     | 
    
         
            +
             
     | 
| 
      
 354 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 355 
     | 
    
         
            +
            name = "nom"
         
     | 
| 
      
 356 
     | 
    
         
            +
            version = "7.1.3"
         
     | 
| 
      
 357 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 358 
     | 
    
         
            +
            checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
         
     | 
| 
      
 359 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 360 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 361 
     | 
    
         
            +
             "minimal-lexical",
         
     | 
| 
      
 362 
     | 
    
         
            +
            ]
         
     | 
| 
      
 363 
     | 
    
         
            +
             
     | 
| 
      
 364 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 365 
     | 
    
         
            +
            name = "once_cell"
         
     | 
| 
      
 366 
     | 
    
         
            +
            version = "1.17.1"
         
     | 
| 
      
 367 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 368 
     | 
    
         
            +
            checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
         
     | 
| 
      
 369 
     | 
    
         
            +
             
     | 
| 
      
 370 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 371 
     | 
    
         
            +
            name = "peeking_take_while"
         
     | 
| 
      
 372 
     | 
    
         
            +
            version = "0.1.2"
         
     | 
| 
      
 373 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 374 
     | 
    
         
            +
            checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
         
     | 
| 
      
 375 
     | 
    
         
            +
             
     | 
| 
      
 376 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 377 
     | 
    
         
            +
            name = "pin-utils"
         
     | 
| 
      
 378 
     | 
    
         
            +
            version = "0.1.0"
         
     | 
| 
      
 379 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 380 
     | 
    
         
            +
            checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
         
     | 
| 
      
 381 
     | 
    
         
            +
             
     | 
| 
      
 382 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 383 
     | 
    
         
            +
            name = "ppv-lite86"
         
     | 
| 
      
 384 
     | 
    
         
            +
            version = "0.2.17"
         
     | 
| 
      
 385 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 386 
     | 
    
         
            +
            checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
         
     | 
| 
      
 387 
     | 
    
         
            +
             
     | 
| 
      
 388 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 389 
     | 
    
         
            +
            name = "proc-macro2"
         
     | 
| 
      
 390 
     | 
    
         
            +
            version = "1.0.56"
         
     | 
| 
      
 391 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 392 
     | 
    
         
            +
            checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
         
     | 
| 
      
 393 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 394 
     | 
    
         
            +
             "unicode-ident",
         
     | 
| 
      
 395 
     | 
    
         
            +
            ]
         
     | 
| 
      
 396 
     | 
    
         
            +
             
     | 
| 
      
 397 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 398 
     | 
    
         
            +
            name = "quote"
         
     | 
| 
      
 399 
     | 
    
         
            +
            version = "1.0.26"
         
     | 
| 
      
 400 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 401 
     | 
    
         
            +
            checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
         
     | 
| 
      
 402 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 403 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 404 
     | 
    
         
            +
            ]
         
     | 
| 
      
 405 
     | 
    
         
            +
             
     | 
| 
      
 406 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 407 
     | 
    
         
            +
            name = "rand"
         
     | 
| 
      
 408 
     | 
    
         
            +
            version = "0.8.5"
         
     | 
| 
      
 409 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 410 
     | 
    
         
            +
            checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
         
     | 
| 
      
 411 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 412 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 413 
     | 
    
         
            +
             "rand_chacha",
         
     | 
| 
      
 414 
     | 
    
         
            +
             "rand_core",
         
     | 
| 
      
 415 
     | 
    
         
            +
            ]
         
     | 
| 
      
 416 
     | 
    
         
            +
             
     | 
| 
      
 417 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 418 
     | 
    
         
            +
            name = "rand_chacha"
         
     | 
| 
      
 419 
     | 
    
         
            +
            version = "0.3.1"
         
     | 
| 
      
 420 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 421 
     | 
    
         
            +
            checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
         
     | 
| 
      
 422 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 423 
     | 
    
         
            +
             "ppv-lite86",
         
     | 
| 
      
 424 
     | 
    
         
            +
             "rand_core",
         
     | 
| 
      
 425 
     | 
    
         
            +
            ]
         
     | 
| 
      
 426 
     | 
    
         
            +
             
     | 
| 
      
 427 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 428 
     | 
    
         
            +
            name = "rand_core"
         
     | 
| 
      
 429 
     | 
    
         
            +
            version = "0.6.4"
         
     | 
| 
      
 430 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 431 
     | 
    
         
            +
            checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
         
     | 
| 
      
 432 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 433 
     | 
    
         
            +
             "getrandom",
         
     | 
| 
      
 434 
     | 
    
         
            +
            ]
         
     | 
| 
      
 435 
     | 
    
         
            +
             
     | 
| 
      
 436 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 437 
     | 
    
         
            +
            name = "rb-sys"
         
     | 
| 
      
 438 
     | 
    
         
            +
            version = "0.9.71"
         
     | 
| 
      
 439 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 440 
     | 
    
         
            +
            checksum = "156bfedced1e236600bcaad538477097ff2ed5c6b474e411d15b791e1d24c0f1"
         
     | 
| 
      
 441 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 442 
     | 
    
         
            +
             "rb-sys-build",
         
     | 
| 
      
 443 
     | 
    
         
            +
            ]
         
     | 
| 
      
 444 
     | 
    
         
            +
             
     | 
| 
      
 445 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 446 
     | 
    
         
            +
            name = "rb-sys-build"
         
     | 
| 
      
 447 
     | 
    
         
            +
            version = "0.9.71"
         
     | 
| 
      
 448 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 449 
     | 
    
         
            +
            checksum = "5cb2e4a32cbc290b543a74567072ad24b708aff7bb5dde5a68d5690379cd7938"
         
     | 
| 
      
 450 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 451 
     | 
    
         
            +
             "bindgen",
         
     | 
| 
      
 452 
     | 
    
         
            +
             "lazy_static",
         
     | 
| 
      
 453 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 454 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 455 
     | 
    
         
            +
             "regex",
         
     | 
| 
      
 456 
     | 
    
         
            +
             "shell-words",
         
     | 
| 
      
 457 
     | 
    
         
            +
             "syn 1.0.109",
         
     | 
| 
      
 458 
     | 
    
         
            +
            ]
         
     | 
| 
      
 459 
     | 
    
         
            +
             
     | 
| 
      
 460 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 461 
     | 
    
         
            +
            name = "rb-sys-env"
         
     | 
| 
      
 462 
     | 
    
         
            +
            version = "0.1.2"
         
     | 
| 
      
 463 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 464 
     | 
    
         
            +
            checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
         
     | 
| 
      
 465 
     | 
    
         
            +
             
     | 
| 
      
 466 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 467 
     | 
    
         
            +
            name = "redox_syscall"
         
     | 
| 
      
 468 
     | 
    
         
            +
            version = "0.3.5"
         
     | 
| 
      
 469 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 470 
     | 
    
         
            +
            checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
         
     | 
| 
      
 471 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 472 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
      
 473 
     | 
    
         
            +
            ]
         
     | 
| 
      
 474 
     | 
    
         
            +
             
     | 
| 
      
 475 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 476 
     | 
    
         
            +
            name = "regex"
         
     | 
| 
      
 477 
     | 
    
         
            +
            version = "1.7.3"
         
     | 
| 
      
 478 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 479 
     | 
    
         
            +
            checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
         
     | 
| 
      
 480 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 481 
     | 
    
         
            +
             "aho-corasick",
         
     | 
| 
      
 482 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 483 
     | 
    
         
            +
             "regex-syntax",
         
     | 
| 
      
 484 
     | 
    
         
            +
            ]
         
     | 
| 
      
 485 
     | 
    
         
            +
             
     | 
| 
      
 486 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 487 
     | 
    
         
            +
            name = "regex-automata"
         
     | 
| 
      
 488 
     | 
    
         
            +
            version = "0.1.10"
         
     | 
| 
      
 489 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 490 
     | 
    
         
            +
            checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
         
     | 
| 
      
 491 
     | 
    
         
            +
             
     | 
| 
      
 492 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 493 
     | 
    
         
            +
            name = "regex-syntax"
         
     | 
| 
      
 494 
     | 
    
         
            +
            version = "0.6.29"
         
     | 
| 
      
 495 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 496 
     | 
    
         
            +
            checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
         
     | 
| 
      
 497 
     | 
    
         
            +
             
     | 
| 
      
 498 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 499 
     | 
    
         
            +
            name = "rustc-hash"
         
     | 
| 
      
 500 
     | 
    
         
            +
            version = "1.1.0"
         
     | 
| 
      
 501 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 502 
     | 
    
         
            +
            checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
         
     | 
| 
      
 503 
     | 
    
         
            +
             
     | 
| 
      
 504 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 505 
     | 
    
         
            +
            name = "rustix"
         
     | 
| 
      
 506 
     | 
    
         
            +
            version = "0.37.8"
         
     | 
| 
      
 507 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 508 
     | 
    
         
            +
            checksum = "1aef160324be24d31a62147fae491c14d2204a3865c7ca8c3b0d7f7bcb3ea635"
         
     | 
| 
      
 509 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 510 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
      
 511 
     | 
    
         
            +
             "errno",
         
     | 
| 
      
 512 
     | 
    
         
            +
             "io-lifetimes",
         
     | 
| 
      
 513 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 514 
     | 
    
         
            +
             "linux-raw-sys",
         
     | 
| 
      
 515 
     | 
    
         
            +
             "windows-sys 0.48.0",
         
     | 
| 
      
 516 
     | 
    
         
            +
            ]
         
     | 
| 
      
 517 
     | 
    
         
            +
             
     | 
| 
      
 518 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 519 
     | 
    
         
            +
            name = "seq-macro"
         
     | 
| 
      
 520 
     | 
    
         
            +
            version = "0.3.3"
         
     | 
| 
      
 521 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 522 
     | 
    
         
            +
            checksum = "e6b44e8fc93a14e66336d230954dda83d18b4605ccace8fe09bc7514a71ad0bc"
         
     | 
| 
      
 523 
     | 
    
         
            +
             
     | 
| 
      
 524 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 525 
     | 
    
         
            +
            name = "serde"
         
     | 
| 
      
 526 
     | 
    
         
            +
            version = "1.0.159"
         
     | 
| 
      
 527 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 528 
     | 
    
         
            +
            checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
         
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 531 
     | 
    
         
            +
            name = "sha2"
         
     | 
| 
      
 532 
     | 
    
         
            +
            version = "0.10.6"
         
     | 
| 
      
 533 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 534 
     | 
    
         
            +
            checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
         
     | 
| 
      
 535 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 536 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 537 
     | 
    
         
            +
             "cpufeatures",
         
     | 
| 
      
 538 
     | 
    
         
            +
             "digest",
         
     | 
| 
      
 539 
     | 
    
         
            +
            ]
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 542 
     | 
    
         
            +
            name = "shell-words"
         
     | 
| 
      
 543 
     | 
    
         
            +
            version = "1.1.0"
         
     | 
| 
      
 544 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 545 
     | 
    
         
            +
            checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
         
     | 
| 
      
 546 
     | 
    
         
            +
             
     | 
| 
      
 547 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 548 
     | 
    
         
            +
            name = "shlex"
         
     | 
| 
      
 549 
     | 
    
         
            +
            version = "1.1.0"
         
     | 
| 
      
 550 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 551 
     | 
    
         
            +
            checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
         
     | 
| 
      
 552 
     | 
    
         
            +
             
     | 
| 
      
 553 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 554 
     | 
    
         
            +
            name = "smallvec"
         
     | 
| 
      
 555 
     | 
    
         
            +
            version = "1.10.0"
         
     | 
| 
      
 556 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 557 
     | 
    
         
            +
            checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
         
     | 
| 
      
 558 
     | 
    
         
            +
             
     | 
| 
      
 559 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 560 
     | 
    
         
            +
            name = "syn"
         
     | 
| 
      
 561 
     | 
    
         
            +
            version = "1.0.109"
         
     | 
| 
      
 562 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 563 
     | 
    
         
            +
            checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
         
     | 
| 
      
 564 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 565 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 566 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 567 
     | 
    
         
            +
             "unicode-ident",
         
     | 
| 
      
 568 
     | 
    
         
            +
            ]
         
     | 
| 
      
 569 
     | 
    
         
            +
             
     | 
| 
      
 570 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 571 
     | 
    
         
            +
            name = "syn"
         
     | 
| 
      
 572 
     | 
    
         
            +
            version = "2.0.13"
         
     | 
| 
      
 573 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 574 
     | 
    
         
            +
            checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec"
         
     | 
| 
      
 575 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 576 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 577 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 578 
     | 
    
         
            +
             "unicode-ident",
         
     | 
| 
      
 579 
     | 
    
         
            +
            ]
         
     | 
| 
      
 580 
     | 
    
         
            +
             
     | 
| 
      
 581 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 582 
     | 
    
         
            +
            name = "tempfile"
         
     | 
| 
      
 583 
     | 
    
         
            +
            version = "3.5.0"
         
     | 
| 
      
 584 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 585 
     | 
    
         
            +
            checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
         
     | 
| 
      
 586 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 587 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 588 
     | 
    
         
            +
             "fastrand",
         
     | 
| 
      
 589 
     | 
    
         
            +
             "redox_syscall",
         
     | 
| 
      
 590 
     | 
    
         
            +
             "rustix",
         
     | 
| 
      
 591 
     | 
    
         
            +
             "windows-sys 0.45.0",
         
     | 
| 
      
 592 
     | 
    
         
            +
            ]
         
     | 
| 
      
 593 
     | 
    
         
            +
             
     | 
| 
      
 594 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 595 
     | 
    
         
            +
            name = "thiserror"
         
     | 
| 
      
 596 
     | 
    
         
            +
            version = "1.0.40"
         
     | 
| 
      
 597 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 598 
     | 
    
         
            +
            checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
         
     | 
| 
      
 599 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 600 
     | 
    
         
            +
             "thiserror-impl",
         
     | 
| 
      
 601 
     | 
    
         
            +
            ]
         
     | 
| 
      
 602 
     | 
    
         
            +
             
     | 
| 
      
 603 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 604 
     | 
    
         
            +
            name = "thiserror-impl"
         
     | 
| 
      
 605 
     | 
    
         
            +
            version = "1.0.40"
         
     | 
| 
      
 606 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 607 
     | 
    
         
            +
            checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
         
     | 
| 
      
 608 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 609 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 610 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 611 
     | 
    
         
            +
             "syn 2.0.13",
         
     | 
| 
      
 612 
     | 
    
         
            +
            ]
         
     | 
| 
      
 613 
     | 
    
         
            +
             
     | 
| 
      
 614 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 615 
     | 
    
         
            +
            name = "typenum"
         
     | 
| 
      
 616 
     | 
    
         
            +
            version = "1.16.0"
         
     | 
| 
      
 617 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 618 
     | 
    
         
            +
            checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
         
     | 
| 
      
 619 
     | 
    
         
            +
             
     | 
| 
      
 620 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 621 
     | 
    
         
            +
            name = "unicode-ident"
         
     | 
| 
      
 622 
     | 
    
         
            +
            version = "1.0.8"
         
     | 
| 
      
 623 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 624 
     | 
    
         
            +
            checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
         
     | 
| 
      
 625 
     | 
    
         
            +
             
     | 
| 
      
 626 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 627 
     | 
    
         
            +
            name = "version_check"
         
     | 
| 
      
 628 
     | 
    
         
            +
            version = "0.9.4"
         
     | 
| 
      
 629 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 630 
     | 
    
         
            +
            checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
         
     | 
| 
      
 631 
     | 
    
         
            +
             
     | 
| 
      
 632 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 633 
     | 
    
         
            +
            name = "wasi"
         
     | 
| 
      
 634 
     | 
    
         
            +
            version = "0.11.0+wasi-snapshot-preview1"
         
     | 
| 
      
 635 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 636 
     | 
    
         
            +
            checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
         
     | 
| 
      
 637 
     | 
    
         
            +
             
     | 
| 
      
 638 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 639 
     | 
    
         
            +
            name = "winapi"
         
     | 
| 
      
 640 
     | 
    
         
            +
            version = "0.3.9"
         
     | 
| 
      
 641 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 642 
     | 
    
         
            +
            checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
         
     | 
| 
      
 643 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 644 
     | 
    
         
            +
             "winapi-i686-pc-windows-gnu",
         
     | 
| 
      
 645 
     | 
    
         
            +
             "winapi-x86_64-pc-windows-gnu",
         
     | 
| 
      
 646 
     | 
    
         
            +
            ]
         
     | 
| 
      
 647 
     | 
    
         
            +
             
     | 
| 
      
 648 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 649 
     | 
    
         
            +
            name = "winapi-i686-pc-windows-gnu"
         
     | 
| 
      
 650 
     | 
    
         
            +
            version = "0.4.0"
         
     | 
| 
      
 651 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 652 
     | 
    
         
            +
            checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
         
     | 
| 
      
 653 
     | 
    
         
            +
             
     | 
| 
      
 654 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 655 
     | 
    
         
            +
            name = "winapi-x86_64-pc-windows-gnu"
         
     | 
| 
      
 656 
     | 
    
         
            +
            version = "0.4.0"
         
     | 
| 
      
 657 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 658 
     | 
    
         
            +
            checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
         
     | 
| 
      
 659 
     | 
    
         
            +
             
     | 
| 
      
 660 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 661 
     | 
    
         
            +
            name = "windows-sys"
         
     | 
| 
      
 662 
     | 
    
         
            +
            version = "0.45.0"
         
     | 
| 
      
 663 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 664 
     | 
    
         
            +
            checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
         
     | 
| 
      
 665 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 666 
     | 
    
         
            +
             "windows-targets 0.42.2",
         
     | 
| 
      
 667 
     | 
    
         
            +
            ]
         
     | 
| 
      
 668 
     | 
    
         
            +
             
     | 
| 
      
 669 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 670 
     | 
    
         
            +
            name = "windows-sys"
         
     | 
| 
      
 671 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 672 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 673 
     | 
    
         
            +
            checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
         
     | 
| 
      
 674 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 675 
     | 
    
         
            +
             "windows-targets 0.48.0",
         
     | 
| 
      
 676 
     | 
    
         
            +
            ]
         
     | 
| 
      
 677 
     | 
    
         
            +
             
     | 
| 
      
 678 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 679 
     | 
    
         
            +
            name = "windows-targets"
         
     | 
| 
      
 680 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 681 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 682 
     | 
    
         
            +
            checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
         
     | 
| 
      
 683 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 684 
     | 
    
         
            +
             "windows_aarch64_gnullvm 0.42.2",
         
     | 
| 
      
 685 
     | 
    
         
            +
             "windows_aarch64_msvc 0.42.2",
         
     | 
| 
      
 686 
     | 
    
         
            +
             "windows_i686_gnu 0.42.2",
         
     | 
| 
      
 687 
     | 
    
         
            +
             "windows_i686_msvc 0.42.2",
         
     | 
| 
      
 688 
     | 
    
         
            +
             "windows_x86_64_gnu 0.42.2",
         
     | 
| 
      
 689 
     | 
    
         
            +
             "windows_x86_64_gnullvm 0.42.2",
         
     | 
| 
      
 690 
     | 
    
         
            +
             "windows_x86_64_msvc 0.42.2",
         
     | 
| 
      
 691 
     | 
    
         
            +
            ]
         
     | 
| 
      
 692 
     | 
    
         
            +
             
     | 
| 
      
 693 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 694 
     | 
    
         
            +
            name = "windows-targets"
         
     | 
| 
      
 695 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 696 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 697 
     | 
    
         
            +
            checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
         
     | 
| 
      
 698 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 699 
     | 
    
         
            +
             "windows_aarch64_gnullvm 0.48.0",
         
     | 
| 
      
 700 
     | 
    
         
            +
             "windows_aarch64_msvc 0.48.0",
         
     | 
| 
      
 701 
     | 
    
         
            +
             "windows_i686_gnu 0.48.0",
         
     | 
| 
      
 702 
     | 
    
         
            +
             "windows_i686_msvc 0.48.0",
         
     | 
| 
      
 703 
     | 
    
         
            +
             "windows_x86_64_gnu 0.48.0",
         
     | 
| 
      
 704 
     | 
    
         
            +
             "windows_x86_64_gnullvm 0.48.0",
         
     | 
| 
      
 705 
     | 
    
         
            +
             "windows_x86_64_msvc 0.48.0",
         
     | 
| 
      
 706 
     | 
    
         
            +
            ]
         
     | 
| 
      
 707 
     | 
    
         
            +
             
     | 
| 
      
 708 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 709 
     | 
    
         
            +
            name = "windows_aarch64_gnullvm"
         
     | 
| 
      
 710 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 711 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 712 
     | 
    
         
            +
            checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
         
     | 
| 
      
 713 
     | 
    
         
            +
             
     | 
| 
      
 714 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 715 
     | 
    
         
            +
            name = "windows_aarch64_gnullvm"
         
     | 
| 
      
 716 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 717 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 718 
     | 
    
         
            +
            checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
         
     | 
| 
      
 719 
     | 
    
         
            +
             
     | 
| 
      
 720 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 721 
     | 
    
         
            +
            name = "windows_aarch64_msvc"
         
     | 
| 
      
 722 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 723 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 724 
     | 
    
         
            +
            checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
         
     | 
| 
      
 725 
     | 
    
         
            +
             
     | 
| 
      
 726 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 727 
     | 
    
         
            +
            name = "windows_aarch64_msvc"
         
     | 
| 
      
 728 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 729 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 730 
     | 
    
         
            +
            checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
         
     | 
| 
      
 731 
     | 
    
         
            +
             
     | 
| 
      
 732 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 733 
     | 
    
         
            +
            name = "windows_i686_gnu"
         
     | 
| 
      
 734 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 735 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 736 
     | 
    
         
            +
            checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
         
     | 
| 
      
 737 
     | 
    
         
            +
             
     | 
| 
      
 738 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 739 
     | 
    
         
            +
            name = "windows_i686_gnu"
         
     | 
| 
      
 740 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 741 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 742 
     | 
    
         
            +
            checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
         
     | 
| 
      
 743 
     | 
    
         
            +
             
     | 
| 
      
 744 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 745 
     | 
    
         
            +
            name = "windows_i686_msvc"
         
     | 
| 
      
 746 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 747 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 748 
     | 
    
         
            +
            checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
         
     | 
| 
      
 749 
     | 
    
         
            +
             
     | 
| 
      
 750 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 751 
     | 
    
         
            +
            name = "windows_i686_msvc"
         
     | 
| 
      
 752 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 753 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 754 
     | 
    
         
            +
            checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
         
     | 
| 
      
 755 
     | 
    
         
            +
             
     | 
| 
      
 756 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 757 
     | 
    
         
            +
            name = "windows_x86_64_gnu"
         
     | 
| 
      
 758 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 759 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 760 
     | 
    
         
            +
            checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
         
     | 
| 
      
 761 
     | 
    
         
            +
             
     | 
| 
      
 762 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 763 
     | 
    
         
            +
            name = "windows_x86_64_gnu"
         
     | 
| 
      
 764 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 765 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 766 
     | 
    
         
            +
            checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
         
     | 
| 
      
 767 
     | 
    
         
            +
             
     | 
| 
      
 768 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 769 
     | 
    
         
            +
            name = "windows_x86_64_gnullvm"
         
     | 
| 
      
 770 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 771 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 772 
     | 
    
         
            +
            checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
         
     | 
| 
      
 773 
     | 
    
         
            +
             
     | 
| 
      
 774 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 775 
     | 
    
         
            +
            name = "windows_x86_64_gnullvm"
         
     | 
| 
      
 776 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 777 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 778 
     | 
    
         
            +
            checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
         
     | 
| 
      
 779 
     | 
    
         
            +
             
     | 
| 
      
 780 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 781 
     | 
    
         
            +
            name = "windows_x86_64_msvc"
         
     | 
| 
      
 782 
     | 
    
         
            +
            version = "0.42.2"
         
     | 
| 
      
 783 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 784 
     | 
    
         
            +
            checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
         
     | 
| 
      
 785 
     | 
    
         
            +
             
     | 
| 
      
 786 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 787 
     | 
    
         
            +
            name = "windows_x86_64_msvc"
         
     | 
| 
      
 788 
     | 
    
         
            +
            version = "0.48.0"
         
     | 
| 
      
 789 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 790 
     | 
    
         
            +
            checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
         
     |