tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Cargo.lock (8545B)


      1 # This file is automatically @generated by Cargo.
      2 # It is not intended for manual editing.
      3 version = 4
      4 
      5 [[package]]
      6 name = "aho-corasick"
      7 version = "1.1.3"
      8 source = "registry+https://github.com/rust-lang/crates.io-index"
      9 checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
     10 dependencies = [
     11  "memchr",
     12 ]
     13 
     14 [[package]]
     15 name = "anyhow"
     16 version = "1.0.40"
     17 source = "registry+https://github.com/rust-lang/crates.io-index"
     18 checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b"
     19 
     20 [[package]]
     21 name = "atty"
     22 version = "0.2.14"
     23 source = "registry+https://github.com/rust-lang/crates.io-index"
     24 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
     25 dependencies = [
     26  "hermit-abi",
     27  "libc",
     28  "winapi",
     29 ]
     30 
     31 [[package]]
     32 name = "bitflags"
     33 version = "2.6.0"
     34 source = "registry+https://github.com/rust-lang/crates.io-index"
     35 checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
     36 
     37 [[package]]
     38 name = "bumpalo"
     39 version = "3.14.0"
     40 source = "registry+https://github.com/rust-lang/crates.io-index"
     41 checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
     42 
     43 [[package]]
     44 name = "cfg-if"
     45 version = "1.0.0"
     46 source = "registry+https://github.com/rust-lang/crates.io-index"
     47 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
     48 
     49 [[package]]
     50 name = "env_logger"
     51 version = "0.7.1"
     52 source = "registry+https://github.com/rust-lang/crates.io-index"
     53 checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
     54 dependencies = [
     55  "atty",
     56  "humantime",
     57  "log",
     58  "regex",
     59  "termcolor",
     60 ]
     61 
     62 [[package]]
     63 name = "equivalent"
     64 version = "1.0.1"
     65 source = "registry+https://github.com/rust-lang/crates.io-index"
     66 checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
     67 
     68 [[package]]
     69 name = "hashbrown"
     70 version = "0.15.0"
     71 source = "registry+https://github.com/rust-lang/crates.io-index"
     72 checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
     73 
     74 [[package]]
     75 name = "hermit-abi"
     76 version = "0.1.18"
     77 source = "registry+https://github.com/rust-lang/crates.io-index"
     78 checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
     79 dependencies = [
     80  "libc",
     81 ]
     82 
     83 [[package]]
     84 name = "humantime"
     85 version = "1.3.0"
     86 source = "registry+https://github.com/rust-lang/crates.io-index"
     87 checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
     88 dependencies = [
     89  "quick-error",
     90 ]
     91 
     92 [[package]]
     93 name = "indexmap"
     94 version = "2.9.0"
     95 source = "registry+https://github.com/rust-lang/crates.io-index"
     96 checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
     97 dependencies = [
     98  "equivalent",
     99  "hashbrown",
    100 ]
    101 
    102 [[package]]
    103 name = "leb128fmt"
    104 version = "0.1.0"
    105 source = "registry+https://github.com/rust-lang/crates.io-index"
    106 checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
    107 
    108 [[package]]
    109 name = "libc"
    110 version = "0.2.96"
    111 source = "registry+https://github.com/rust-lang/crates.io-index"
    112 checksum = "5600b4e6efc5421841a2138a6b082e07fe12f9aaa12783d50e5d13325b26b4fc"
    113 
    114 [[package]]
    115 name = "log"
    116 version = "0.4.14"
    117 source = "registry+https://github.com/rust-lang/crates.io-index"
    118 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
    119 dependencies = [
    120  "cfg-if",
    121 ]
    122 
    123 [[package]]
    124 name = "memchr"
    125 version = "2.7.4"
    126 source = "registry+https://github.com/rust-lang/crates.io-index"
    127 checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
    128 
    129 [[package]]
    130 name = "proc-macro2"
    131 version = "1.0.27"
    132 source = "registry+https://github.com/rust-lang/crates.io-index"
    133 checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
    134 dependencies = [
    135  "unicode-xid",
    136 ]
    137 
    138 [[package]]
    139 name = "quick-error"
    140 version = "1.2.3"
    141 source = "registry+https://github.com/rust-lang/crates.io-index"
    142 checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
    143 
    144 [[package]]
    145 name = "quote"
    146 version = "1.0.9"
    147 source = "registry+https://github.com/rust-lang/crates.io-index"
    148 checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
    149 dependencies = [
    150  "proc-macro2",
    151 ]
    152 
    153 [[package]]
    154 name = "regex"
    155 version = "1.11.1"
    156 source = "registry+https://github.com/rust-lang/crates.io-index"
    157 checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
    158 dependencies = [
    159  "aho-corasick",
    160  "memchr",
    161  "regex-automata",
    162  "regex-syntax",
    163 ]
    164 
    165 [[package]]
    166 name = "regex-automata"
    167 version = "0.4.8"
    168 source = "registry+https://github.com/rust-lang/crates.io-index"
    169 checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
    170 dependencies = [
    171  "aho-corasick",
    172  "memchr",
    173  "regex-syntax",
    174 ]
    175 
    176 [[package]]
    177 name = "regex-syntax"
    178 version = "0.8.5"
    179 source = "registry+https://github.com/rust-lang/crates.io-index"
    180 checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
    181 
    182 [[package]]
    183 name = "semver"
    184 version = "1.0.26"
    185 source = "registry+https://github.com/rust-lang/crates.io-index"
    186 checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
    187 
    188 [[package]]
    189 name = "serde"
    190 version = "1.0.126"
    191 source = "registry+https://github.com/rust-lang/crates.io-index"
    192 checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
    193 
    194 [[package]]
    195 name = "serde_derive"
    196 version = "1.0.126"
    197 source = "registry+https://github.com/rust-lang/crates.io-index"
    198 checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
    199 dependencies = [
    200  "proc-macro2",
    201  "quote",
    202  "syn",
    203 ]
    204 
    205 [[package]]
    206 name = "syn"
    207 version = "1.0.65"
    208 source = "registry+https://github.com/rust-lang/crates.io-index"
    209 checksum = "f3a1d708c221c5a612956ef9f75b37e454e88d1f7b899fbd3a18d4252012d663"
    210 dependencies = [
    211  "proc-macro2",
    212  "quote",
    213  "unicode-xid",
    214 ]
    215 
    216 [[package]]
    217 name = "termcolor"
    218 version = "1.1.2"
    219 source = "registry+https://github.com/rust-lang/crates.io-index"
    220 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
    221 dependencies = [
    222  "winapi-util",
    223 ]
    224 
    225 [[package]]
    226 name = "toml"
    227 version = "0.5.8"
    228 source = "registry+https://github.com/rust-lang/crates.io-index"
    229 checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
    230 dependencies = [
    231  "serde",
    232 ]
    233 
    234 [[package]]
    235 name = "unicode-width"
    236 version = "0.2.0"
    237 source = "registry+https://github.com/rust-lang/crates.io-index"
    238 checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
    239 
    240 [[package]]
    241 name = "unicode-xid"
    242 version = "0.2.2"
    243 source = "registry+https://github.com/rust-lang/crates.io-index"
    244 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
    245 
    246 [[package]]
    247 name = "wasm-encoder"
    248 version = "0.229.0"
    249 source = "registry+https://github.com/rust-lang/crates.io-index"
    250 checksum = "38ba1d491ecacb085a2552025c10a675a6fddcbd03b1fc9b36c536010ce265d2"
    251 dependencies = [
    252  "leb128fmt",
    253  "wasmparser",
    254 ]
    255 
    256 [[package]]
    257 name = "wasm-generate-spectests"
    258 version = "0.1.0"
    259 dependencies = [
    260  "anyhow",
    261  "env_logger",
    262  "log",
    263  "regex",
    264  "serde",
    265  "serde_derive",
    266  "toml",
    267  "wast2js",
    268 ]
    269 
    270 [[package]]
    271 name = "wasmparser"
    272 version = "0.229.0"
    273 source = "registry+https://github.com/rust-lang/crates.io-index"
    274 checksum = "0cc3b1f053f5d41aa55640a1fa9b6d1b8a9e4418d118ce308d20e24ff3575a8c"
    275 dependencies = [
    276  "bitflags",
    277  "indexmap",
    278  "semver",
    279 ]
    280 
    281 [[package]]
    282 name = "wast"
    283 version = "229.0.0"
    284 source = "registry+https://github.com/rust-lang/crates.io-index"
    285 checksum = "63fcaff613c12225696bb163f79ca38ffb40e9300eff0ff4b8aa8b2f7eadf0d9"
    286 dependencies = [
    287  "bumpalo",
    288  "leb128fmt",
    289  "memchr",
    290  "unicode-width",
    291  "wasm-encoder",
    292 ]
    293 
    294 [[package]]
    295 name = "wast2js"
    296 version = "0.1.0"
    297 dependencies = [
    298  "anyhow",
    299  "regex",
    300  "wast",
    301 ]
    302 
    303 [[package]]
    304 name = "winapi"
    305 version = "0.3.9"
    306 source = "registry+https://github.com/rust-lang/crates.io-index"
    307 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
    308 dependencies = [
    309  "winapi-i686-pc-windows-gnu",
    310  "winapi-x86_64-pc-windows-gnu",
    311 ]
    312 
    313 [[package]]
    314 name = "winapi-i686-pc-windows-gnu"
    315 version = "0.4.0"
    316 source = "registry+https://github.com/rust-lang/crates.io-index"
    317 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
    318 
    319 [[package]]
    320 name = "winapi-util"
    321 version = "0.1.5"
    322 source = "registry+https://github.com/rust-lang/crates.io-index"
    323 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
    324 dependencies = [
    325  "winapi",
    326 ]
    327 
    328 [[package]]
    329 name = "winapi-x86_64-pc-windows-gnu"
    330 version = "0.4.0"
    331 source = "registry+https://github.com/rust-lang/crates.io-index"
    332 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"