Cargo.toml 357 B

123456789101112131415161718
  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. num = "0.4.3"
  9. rand = "0.8.5"
  10. rand_chacha = "0.3.1"
  11. rand_core = { version = "0.6.4", features = ["getrandom"] }
  12. xml = "0.8.20"
  13. [lib]
  14. name = "sudoku"
  15. test = true