Cargo.toml 343 B

1234567891011121314151617
  1. [package]
  2. name = "sudoku"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. bit_field = "0.10.2"
  8. rand = "0.8.5"
  9. rand_chacha = "0.3.1"
  10. rand_core = { version = "0.6.4", features = ["getrandom"] }
  11. xml = "0.8.20"
  12. [lib]
  13. name = "sudoku"
  14. test = true