mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-18 03:41:52 +03:00
d3333d813d
* Added repeat days with noise function & enum * Added widgets and controls * Modified description * Refactor to have an Option<usize> in signature instead of a whole new similar function * Added noise parameter + xor random shift + clamped substraction * Added ref to the XorShiftRng to ScenarioModifiers::apply calls * Added noise to pushed ScenarioModifier * Finish up the PR: - consistently reuse the RNG in the UI like tests/headless - slight style tweaks Co-authored-by: Dustin Carlino <dabreegster@gmail.com>
16 lines
303 B
TOML
16 lines
303 B
TOML
[package]
|
|
name = "synthpop"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
abstio = { path = "../abstio" }
|
|
abstutil = { path = "../abstutil" }
|
|
anyhow = "1.0.38"
|
|
geom = { path = "../geom" }
|
|
log = "0.4.14"
|
|
map_model = { path = "../map_model" }
|
|
rand = "0.8.5"
|
|
rand_xorshift = "0.3.0"
|
|
serde = "1.0.123"
|