12345678910111213141516171819202122232425 |
- [package]
- name = "mgen"
- version = "0.1.0"
- edition = "2021"
- [dependencies]
- chrono = "0.4.24"
- futures = "0.3.28"
- glob = "0.3.1"
- rand = "0.8.5"
- rand_distr = { version = "0.4.3", features = ["serde1"] }
- rand_xoshiro = "0.6.0"
- serde = { version = "1.0.158", features = ["derive"] }
- serde_yaml = "0.9.21"
- tokio = { version = "1", features = ["full"] }
- tokio-socks = "0.5.1"
- [profile.release]
- lto = true
- codegen-units = 1
- [profile.bench]
- # useful for profiling, but increases binary size,
- # so potentially bad for real experiments
- debug = true
|