rustbook

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

Cargo.toml (258B)


      1 [package]
      2 name = "guessing_game"
      3 version = "0.1.0"
      4 authors = ["Charles Baptista <charles@charlesbaptista.com>"]
      5 edition = "2018"
      6 
      7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      8 
      9 [dependencies]
     10 rand = "0.5.5"