2d8c9f1099
* Add simulations crate * Firs working runner * Cleanupt * Extract overlay from runner * Fix off id calls * Fix testing values * WIP: Tree overlay for simulation app * Build tree overlay from depth and size * Tree overlay generation tests * WIP: Committee role in layout * Use commtittee role when constructing node * Pairprogramming role calculation * WIP: Extract step runner to node * Aggregate times from different overlay layers * Runner for overlay with layers * Use StepRng in runner tests * Decouple role from node * Define leader steps and behaviour * Get possible node ids from the overlay * Handle unknown state in flat overlay * Use solver type for deserialization * Remove refcell from nodes hashmap * Create layout from the provided node ids * Break runner loops into seperate functions * Use for loop to collect node step times * Revert leader times collection * Add interegion latency tests --------- Co-authored-by: danielsanchezq <sanchez.quiros.daniel@gmail.com>
17 lines
462 B
TOML
17 lines
462 B
TOML
[package]
|
|
name = "simulations"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0"
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.2", features = ["js"] }
|