exercises

Log | Files | Refs | README

Cargo.lock (5616B)


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