rustbook

Toy programs and snippets for The Rust Programming Language book
Log | Files | Refs

Cargo.lock (2372B)


      1 # This file is automatically @generated by Cargo.
      2 # It is not intended for manual editing.
      3 [[package]]
      4 name = "bitflags"
      5 version = "1.2.1"
      6 source = "registry+https://github.com/rust-lang/crates.io-index"
      7 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
      8 
      9 [[package]]
     10 name = "cloudabi"
     11 version = "0.0.3"
     12 source = "registry+https://github.com/rust-lang/crates.io-index"
     13 checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
     14 dependencies = [
     15  "bitflags",
     16 ]
     17 
     18 [[package]]
     19 name = "fuchsia-cprng"
     20 version = "0.1.1"
     21 source = "registry+https://github.com/rust-lang/crates.io-index"
     22 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
     23 
     24 [[package]]
     25 name = "guessing_game"
     26 version = "0.1.0"
     27 dependencies = [
     28  "rand",
     29 ]
     30 
     31 [[package]]
     32 name = "libc"
     33 version = "0.2.71"
     34 source = "registry+https://github.com/rust-lang/crates.io-index"
     35 checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49"
     36 
     37 [[package]]
     38 name = "rand"
     39 version = "0.5.6"
     40 source = "registry+https://github.com/rust-lang/crates.io-index"
     41 checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
     42 dependencies = [
     43  "cloudabi",
     44  "fuchsia-cprng",
     45  "libc",
     46  "rand_core 0.3.1",
     47  "winapi",
     48 ]
     49 
     50 [[package]]
     51 name = "rand_core"
     52 version = "0.3.1"
     53 source = "registry+https://github.com/rust-lang/crates.io-index"
     54 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
     55 dependencies = [
     56  "rand_core 0.4.2",
     57 ]
     58 
     59 [[package]]
     60 name = "rand_core"
     61 version = "0.4.2"
     62 source = "registry+https://github.com/rust-lang/crates.io-index"
     63 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
     64 
     65 [[package]]
     66 name = "winapi"
     67 version = "0.3.8"
     68 source = "registry+https://github.com/rust-lang/crates.io-index"
     69 checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
     70 dependencies = [
     71  "winapi-i686-pc-windows-gnu",
     72  "winapi-x86_64-pc-windows-gnu",
     73 ]
     74 
     75 [[package]]
     76 name = "winapi-i686-pc-windows-gnu"
     77 version = "0.4.0"
     78 source = "registry+https://github.com/rust-lang/crates.io-index"
     79 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
     80 
     81 [[package]]
     82 name = "winapi-x86_64-pc-windows-gnu"
     83 version = "0.4.0"
     84 source = "registry+https://github.com/rust-lang/crates.io-index"
     85 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"