Cargo.toml 643 B

123456789101112131415161718192021222324252627
  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. rustls-pemfile = "1.0.3"
  13. serde = { version = "1.0.158", features = ["derive"] }
  14. serde_yaml = "0.9.21"
  15. tokio = { version = "1", features = ["full"] }
  16. tokio-rustls = { version = "0.24.1", features = ["dangerous_configuration"] }
  17. tokio-socks = "0.5.1"
  18. [profile.release]
  19. lto = true
  20. codegen-units = 1
  21. [profile.bench]
  22. # useful for profiling, but increases binary size,
  23. # so potentially bad for real experiments
  24. debug = true