Cargo.toml 518 B

12345678910111213141516171819202122
  1. [package]
  2. name = "aoc2023_niels_overkamp"
  3. version = "0.1.0"
  4. authors = ["niels <niels.overkamp@gmail.com>"]
  5. edition = "2021"
  6. default-run = "aoc2023_niels_overkamp"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. regex = "1"
  10. hex = "0.4.2"
  11. arguments = "0.6.2"
  12. ansi_term = "0.12.1"
  13. chrono = "0.4.19"
  14. curl = "0.4.34"
  15. tempfile = "3.1.0"
  16. itertools = "0.10.1"
  17. petgraph = "0.6.0"
  18. primes = "0.3.0"
  19. nom = { version = "7.1.1", features = ["alloc"] }
  20. num = "0.4.0"