Cargo.toml 540 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "mgen"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. chrono = "0.4.24"
  7. futures = "0.3.28"
  8. glob = "0.3.1"
  9. rand = "0.8.5"
  10. rand_distr = { version = "0.4.3", features = ["serde1"] }
  11. rand_xoshiro = "0.6.0"
  12. serde = { version = "1.0.158", features = ["derive"] }
  13. serde_yaml = "0.9.21"
  14. tokio = { version = "1", features = ["full"] }
  15. tokio-socks = "0.5.1"
  16. [profile.release]
  17. lto = true
  18. codegen-units = 1
  19. [profile.bench]
  20. # useful for profiling, but increases binary size,
  21. # so potentially bad for real experiments
  22. debug = true