protohack

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

Cargo.lock (7206B)


      1 # This file is automatically @generated by Cargo.
      2 # It is not intended for manual editing.
      3 version = 4
      4 
      5 [[package]]
      6 name = "bitflags"
      7 version = "2.11.0"
      8 source = "registry+https://github.com/rust-lang/crates.io-index"
      9 checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
     10 
     11 [[package]]
     12 name = "bytes"
     13 version = "1.11.1"
     14 source = "registry+https://github.com/rust-lang/crates.io-index"
     15 checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
     16 
     17 [[package]]
     18 name = "cfg-if"
     19 version = "1.0.4"
     20 source = "registry+https://github.com/rust-lang/crates.io-index"
     21 checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
     22 
     23 [[package]]
     24 name = "errno"
     25 version = "0.3.14"
     26 source = "registry+https://github.com/rust-lang/crates.io-index"
     27 checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
     28 dependencies = [
     29  "libc",
     30  "windows-sys",
     31 ]
     32 
     33 [[package]]
     34 name = "itoa"
     35 version = "1.0.18"
     36 source = "registry+https://github.com/rust-lang/crates.io-index"
     37 checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
     38 
     39 [[package]]
     40 name = "libc"
     41 version = "0.2.183"
     42 source = "registry+https://github.com/rust-lang/crates.io-index"
     43 checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
     44 
     45 [[package]]
     46 name = "lock_api"
     47 version = "0.4.14"
     48 source = "registry+https://github.com/rust-lang/crates.io-index"
     49 checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
     50 dependencies = [
     51  "scopeguard",
     52 ]
     53 
     54 [[package]]
     55 name = "memchr"
     56 version = "2.8.0"
     57 source = "registry+https://github.com/rust-lang/crates.io-index"
     58 checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
     59 
     60 [[package]]
     61 name = "mio"
     62 version = "1.1.1"
     63 source = "registry+https://github.com/rust-lang/crates.io-index"
     64 checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
     65 dependencies = [
     66  "libc",
     67  "wasi",
     68  "windows-sys",
     69 ]
     70 
     71 [[package]]
     72 name = "parking_lot"
     73 version = "0.12.5"
     74 source = "registry+https://github.com/rust-lang/crates.io-index"
     75 checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
     76 dependencies = [
     77  "lock_api",
     78  "parking_lot_core",
     79 ]
     80 
     81 [[package]]
     82 name = "parking_lot_core"
     83 version = "0.9.12"
     84 source = "registry+https://github.com/rust-lang/crates.io-index"
     85 checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
     86 dependencies = [
     87  "cfg-if",
     88  "libc",
     89  "redox_syscall",
     90  "smallvec",
     91  "windows-link",
     92 ]
     93 
     94 [[package]]
     95 name = "pin-project-lite"
     96 version = "0.2.17"
     97 source = "registry+https://github.com/rust-lang/crates.io-index"
     98 checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
     99 
    100 [[package]]
    101 name = "proc-macro2"
    102 version = "1.0.106"
    103 source = "registry+https://github.com/rust-lang/crates.io-index"
    104 checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
    105 dependencies = [
    106  "unicode-ident",
    107 ]
    108 
    109 [[package]]
    110 name = "protohack"
    111 version = "0.1.0"
    112 dependencies = [
    113  "serde",
    114  "serde_json",
    115  "tokio",
    116 ]
    117 
    118 [[package]]
    119 name = "quote"
    120 version = "1.0.45"
    121 source = "registry+https://github.com/rust-lang/crates.io-index"
    122 checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
    123 dependencies = [
    124  "proc-macro2",
    125 ]
    126 
    127 [[package]]
    128 name = "redox_syscall"
    129 version = "0.5.18"
    130 source = "registry+https://github.com/rust-lang/crates.io-index"
    131 checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
    132 dependencies = [
    133  "bitflags",
    134 ]
    135 
    136 [[package]]
    137 name = "scopeguard"
    138 version = "1.2.0"
    139 source = "registry+https://github.com/rust-lang/crates.io-index"
    140 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
    141 
    142 [[package]]
    143 name = "serde"
    144 version = "1.0.228"
    145 source = "registry+https://github.com/rust-lang/crates.io-index"
    146 checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
    147 dependencies = [
    148  "serde_core",
    149  "serde_derive",
    150 ]
    151 
    152 [[package]]
    153 name = "serde_core"
    154 version = "1.0.228"
    155 source = "registry+https://github.com/rust-lang/crates.io-index"
    156 checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
    157 dependencies = [
    158  "serde_derive",
    159 ]
    160 
    161 [[package]]
    162 name = "serde_derive"
    163 version = "1.0.228"
    164 source = "registry+https://github.com/rust-lang/crates.io-index"
    165 checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
    166 dependencies = [
    167  "proc-macro2",
    168  "quote",
    169  "syn",
    170 ]
    171 
    172 [[package]]
    173 name = "serde_json"
    174 version = "1.0.149"
    175 source = "registry+https://github.com/rust-lang/crates.io-index"
    176 checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
    177 dependencies = [
    178  "itoa",
    179  "memchr",
    180  "serde",
    181  "serde_core",
    182  "zmij",
    183 ]
    184 
    185 [[package]]
    186 name = "signal-hook-registry"
    187 version = "1.4.8"
    188 source = "registry+https://github.com/rust-lang/crates.io-index"
    189 checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
    190 dependencies = [
    191  "errno",
    192  "libc",
    193 ]
    194 
    195 [[package]]
    196 name = "smallvec"
    197 version = "1.15.1"
    198 source = "registry+https://github.com/rust-lang/crates.io-index"
    199 checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
    200 
    201 [[package]]
    202 name = "socket2"
    203 version = "0.6.3"
    204 source = "registry+https://github.com/rust-lang/crates.io-index"
    205 checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
    206 dependencies = [
    207  "libc",
    208  "windows-sys",
    209 ]
    210 
    211 [[package]]
    212 name = "syn"
    213 version = "2.0.117"
    214 source = "registry+https://github.com/rust-lang/crates.io-index"
    215 checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
    216 dependencies = [
    217  "proc-macro2",
    218  "quote",
    219  "unicode-ident",
    220 ]
    221 
    222 [[package]]
    223 name = "tokio"
    224 version = "1.50.0"
    225 source = "registry+https://github.com/rust-lang/crates.io-index"
    226 checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
    227 dependencies = [
    228  "bytes",
    229  "libc",
    230  "mio",
    231  "parking_lot",
    232  "pin-project-lite",
    233  "signal-hook-registry",
    234  "socket2",
    235  "tokio-macros",
    236  "windows-sys",
    237 ]
    238 
    239 [[package]]
    240 name = "tokio-macros"
    241 version = "2.6.1"
    242 source = "registry+https://github.com/rust-lang/crates.io-index"
    243 checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
    244 dependencies = [
    245  "proc-macro2",
    246  "quote",
    247  "syn",
    248 ]
    249 
    250 [[package]]
    251 name = "unicode-ident"
    252 version = "1.0.24"
    253 source = "registry+https://github.com/rust-lang/crates.io-index"
    254 checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
    255 
    256 [[package]]
    257 name = "wasi"
    258 version = "0.11.1+wasi-snapshot-preview1"
    259 source = "registry+https://github.com/rust-lang/crates.io-index"
    260 checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
    261 
    262 [[package]]
    263 name = "windows-link"
    264 version = "0.2.1"
    265 source = "registry+https://github.com/rust-lang/crates.io-index"
    266 checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
    267 
    268 [[package]]
    269 name = "windows-sys"
    270 version = "0.61.2"
    271 source = "registry+https://github.com/rust-lang/crates.io-index"
    272 checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
    273 dependencies = [
    274  "windows-link",
    275 ]
    276 
    277 [[package]]
    278 name = "zmij"
    279 version = "1.0.21"
    280 source = "registry+https://github.com/rust-lang/crates.io-index"
    281 checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"