| giolekva | 0990ccf | 2022-05-13 16:12:38 +0400 | [diff] [blame] | 1 | # This file is automatically @generated by Cargo. |
| 2 | # It is not intended for manual editing. |
| 3 | version = 3 |
| 4 | |
| 5 | [[package]] |
| 6 | name = "autocfg" |
| 7 | version = "1.1.0" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 9 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
| 10 | |
| 11 | [[package]] |
| 12 | name = "bitflags" |
| 13 | version = "1.3.2" |
| 14 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 15 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
| 16 | |
| 17 | [[package]] |
| 18 | name = "bumpalo" |
| 19 | version = "3.9.1" |
| 20 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 21 | checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" |
| 22 | |
| 23 | [[package]] |
| 24 | name = "cassowary" |
| 25 | version = "0.3.0" |
| 26 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 27 | checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" |
| 28 | |
| 29 | [[package]] |
| 30 | name = "cfg-if" |
| 31 | version = "1.0.0" |
| 32 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 33 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
| 34 | |
| 35 | [[package]] |
| 36 | name = "crossterm" |
| 37 | version = "0.23.2" |
| 38 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 39 | checksum = "a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17" |
| 40 | dependencies = [ |
| 41 | "bitflags", |
| 42 | "crossterm_winapi", |
| 43 | "libc", |
| 44 | "mio", |
| 45 | "parking_lot", |
| 46 | "signal-hook", |
| 47 | "signal-hook-mio", |
| 48 | "winapi", |
| 49 | ] |
| 50 | |
| 51 | [[package]] |
| 52 | name = "crossterm_winapi" |
| 53 | version = "0.9.0" |
| 54 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 55 | checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" |
| 56 | dependencies = [ |
| 57 | "winapi", |
| 58 | ] |
| 59 | |
| 60 | [[package]] |
| 61 | name = "hello_rust" |
| 62 | version = "0.1.0" |
| 63 | dependencies = [ |
| 64 | "crossterm", |
| 65 | "tui", |
| 66 | "wasm-bindgen", |
| 67 | ] |
| 68 | |
| 69 | [[package]] |
| 70 | name = "lazy_static" |
| 71 | version = "1.4.0" |
| 72 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 73 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
| 74 | |
| 75 | [[package]] |
| 76 | name = "libc" |
| 77 | version = "0.2.125" |
| 78 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 79 | checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b" |
| 80 | |
| 81 | [[package]] |
| 82 | name = "lock_api" |
| 83 | version = "0.4.7" |
| 84 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 85 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" |
| 86 | dependencies = [ |
| 87 | "autocfg", |
| 88 | "scopeguard", |
| 89 | ] |
| 90 | |
| 91 | [[package]] |
| 92 | name = "log" |
| 93 | version = "0.4.17" |
| 94 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 95 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" |
| 96 | dependencies = [ |
| 97 | "cfg-if", |
| 98 | ] |
| 99 | |
| 100 | [[package]] |
| 101 | name = "mio" |
| 102 | version = "0.8.2" |
| 103 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 104 | checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" |
| 105 | dependencies = [ |
| 106 | "libc", |
| 107 | "log", |
| 108 | "miow", |
| 109 | "ntapi", |
| 110 | "wasi", |
| 111 | "winapi", |
| 112 | ] |
| 113 | |
| 114 | [[package]] |
| 115 | name = "miow" |
| 116 | version = "0.3.7" |
| 117 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 118 | checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" |
| 119 | dependencies = [ |
| 120 | "winapi", |
| 121 | ] |
| 122 | |
| 123 | [[package]] |
| 124 | name = "ntapi" |
| 125 | version = "0.3.7" |
| 126 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 127 | checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" |
| 128 | dependencies = [ |
| 129 | "winapi", |
| 130 | ] |
| 131 | |
| 132 | [[package]] |
| 133 | name = "parking_lot" |
| 134 | version = "0.12.0" |
| 135 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 136 | checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" |
| 137 | dependencies = [ |
| 138 | "lock_api", |
| 139 | "parking_lot_core", |
| 140 | ] |
| 141 | |
| 142 | [[package]] |
| 143 | name = "parking_lot_core" |
| 144 | version = "0.9.3" |
| 145 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 146 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" |
| 147 | dependencies = [ |
| 148 | "cfg-if", |
| 149 | "libc", |
| 150 | "redox_syscall", |
| 151 | "smallvec", |
| 152 | "windows-sys", |
| 153 | ] |
| 154 | |
| 155 | [[package]] |
| 156 | name = "proc-macro2" |
| 157 | version = "1.0.38" |
| 158 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 159 | checksum = "9027b48e9d4c9175fa2218adf3557f91c1137021739951d4932f5f8268ac48aa" |
| 160 | dependencies = [ |
| 161 | "unicode-xid", |
| 162 | ] |
| 163 | |
| 164 | [[package]] |
| 165 | name = "quote" |
| 166 | version = "1.0.18" |
| 167 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 168 | checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1" |
| 169 | dependencies = [ |
| 170 | "proc-macro2", |
| 171 | ] |
| 172 | |
| 173 | [[package]] |
| 174 | name = "redox_syscall" |
| 175 | version = "0.2.13" |
| 176 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 177 | checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" |
| 178 | dependencies = [ |
| 179 | "bitflags", |
| 180 | ] |
| 181 | |
| 182 | [[package]] |
| 183 | name = "scopeguard" |
| 184 | version = "1.1.0" |
| 185 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 186 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" |
| 187 | |
| 188 | [[package]] |
| 189 | name = "signal-hook" |
| 190 | version = "0.3.13" |
| 191 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 192 | checksum = "647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d" |
| 193 | dependencies = [ |
| 194 | "libc", |
| 195 | "signal-hook-registry", |
| 196 | ] |
| 197 | |
| 198 | [[package]] |
| 199 | name = "signal-hook-mio" |
| 200 | version = "0.2.3" |
| 201 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 202 | checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" |
| 203 | dependencies = [ |
| 204 | "libc", |
| 205 | "mio", |
| 206 | "signal-hook", |
| 207 | ] |
| 208 | |
| 209 | [[package]] |
| 210 | name = "signal-hook-registry" |
| 211 | version = "1.4.0" |
| 212 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 213 | checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" |
| 214 | dependencies = [ |
| 215 | "libc", |
| 216 | ] |
| 217 | |
| 218 | [[package]] |
| 219 | name = "smallvec" |
| 220 | version = "1.8.0" |
| 221 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 222 | checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" |
| 223 | |
| 224 | [[package]] |
| 225 | name = "syn" |
| 226 | version = "1.0.92" |
| 227 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 228 | checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52" |
| 229 | dependencies = [ |
| 230 | "proc-macro2", |
| 231 | "quote", |
| 232 | "unicode-xid", |
| 233 | ] |
| 234 | |
| 235 | [[package]] |
| 236 | name = "tui" |
| 237 | version = "0.18.0" |
| 238 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 239 | checksum = "96fe69244ec2af261bced1d9046a6fee6c8c2a6b0228e59e5ba39bc8ba4ed729" |
| 240 | dependencies = [ |
| 241 | "bitflags", |
| 242 | "cassowary", |
| 243 | "crossterm", |
| 244 | "unicode-segmentation", |
| 245 | "unicode-width", |
| 246 | ] |
| 247 | |
| 248 | [[package]] |
| 249 | name = "unicode-segmentation" |
| 250 | version = "1.9.0" |
| 251 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 252 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" |
| 253 | |
| 254 | [[package]] |
| 255 | name = "unicode-width" |
| 256 | version = "0.1.9" |
| 257 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 258 | checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" |
| 259 | |
| 260 | [[package]] |
| 261 | name = "unicode-xid" |
| 262 | version = "0.2.3" |
| 263 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 264 | checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" |
| 265 | |
| 266 | [[package]] |
| 267 | name = "wasi" |
| 268 | version = "0.11.0+wasi-snapshot-preview1" |
| 269 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 270 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" |
| 271 | |
| 272 | [[package]] |
| 273 | name = "wasm-bindgen" |
| 274 | version = "0.2.80" |
| 275 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 276 | checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad" |
| 277 | dependencies = [ |
| 278 | "cfg-if", |
| 279 | "wasm-bindgen-macro", |
| 280 | ] |
| 281 | |
| 282 | [[package]] |
| 283 | name = "wasm-bindgen-backend" |
| 284 | version = "0.2.80" |
| 285 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 286 | checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4" |
| 287 | dependencies = [ |
| 288 | "bumpalo", |
| 289 | "lazy_static", |
| 290 | "log", |
| 291 | "proc-macro2", |
| 292 | "quote", |
| 293 | "syn", |
| 294 | "wasm-bindgen-shared", |
| 295 | ] |
| 296 | |
| 297 | [[package]] |
| 298 | name = "wasm-bindgen-macro" |
| 299 | version = "0.2.80" |
| 300 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 301 | checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5" |
| 302 | dependencies = [ |
| 303 | "quote", |
| 304 | "wasm-bindgen-macro-support", |
| 305 | ] |
| 306 | |
| 307 | [[package]] |
| 308 | name = "wasm-bindgen-macro-support" |
| 309 | version = "0.2.80" |
| 310 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 311 | checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b" |
| 312 | dependencies = [ |
| 313 | "proc-macro2", |
| 314 | "quote", |
| 315 | "syn", |
| 316 | "wasm-bindgen-backend", |
| 317 | "wasm-bindgen-shared", |
| 318 | ] |
| 319 | |
| 320 | [[package]] |
| 321 | name = "wasm-bindgen-shared" |
| 322 | version = "0.2.80" |
| 323 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 324 | checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744" |
| 325 | |
| 326 | [[package]] |
| 327 | name = "winapi" |
| 328 | version = "0.3.9" |
| 329 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 330 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" |
| 331 | dependencies = [ |
| 332 | "winapi-i686-pc-windows-gnu", |
| 333 | "winapi-x86_64-pc-windows-gnu", |
| 334 | ] |
| 335 | |
| 336 | [[package]] |
| 337 | name = "winapi-i686-pc-windows-gnu" |
| 338 | version = "0.4.0" |
| 339 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 340 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
| 341 | |
| 342 | [[package]] |
| 343 | name = "winapi-x86_64-pc-windows-gnu" |
| 344 | version = "0.4.0" |
| 345 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 346 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
| 347 | |
| 348 | [[package]] |
| 349 | name = "windows-sys" |
| 350 | version = "0.36.1" |
| 351 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 352 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" |
| 353 | dependencies = [ |
| 354 | "windows_aarch64_msvc", |
| 355 | "windows_i686_gnu", |
| 356 | "windows_i686_msvc", |
| 357 | "windows_x86_64_gnu", |
| 358 | "windows_x86_64_msvc", |
| 359 | ] |
| 360 | |
| 361 | [[package]] |
| 362 | name = "windows_aarch64_msvc" |
| 363 | version = "0.36.1" |
| 364 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 365 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" |
| 366 | |
| 367 | [[package]] |
| 368 | name = "windows_i686_gnu" |
| 369 | version = "0.36.1" |
| 370 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 371 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" |
| 372 | |
| 373 | [[package]] |
| 374 | name = "windows_i686_msvc" |
| 375 | version = "0.36.1" |
| 376 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 377 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" |
| 378 | |
| 379 | [[package]] |
| 380 | name = "windows_x86_64_gnu" |
| 381 | version = "0.36.1" |
| 382 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 383 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" |
| 384 | |
| 385 | [[package]] |
| 386 | name = "windows_x86_64_msvc" |
| 387 | version = "0.36.1" |
| 388 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 389 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" |