Remove co-dependencies for different modules found in `crates` and migrate the development history to a new repository. The docs were stale, and largely not getting used, so simply deleted for now. When code stabilizes more, they will become useful again. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
35 lines
834 B
TOML
35 lines
834 B
TOML
[package]
|
|
name = "simulation"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
distribution = ["dep:distribution"]
|
|
gossip = ["dep:log"]
|
|
dashboard = ["gossip", "dep:tiny_http", "dep:toml"]
|
|
|
|
[dependencies]
|
|
distribution = { path = "../distribution", optional = true }
|
|
swactor = { path = "../..", features = ["serde"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
getrandom = "0.2"
|
|
log = { version = "0.4", optional = true }
|
|
tiny_http = { version = "0.12", optional = true }
|
|
toml = { version = "0.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
simulation = { path = ".", features = ["gossip", "distribution"] }
|
|
|
|
[[example]]
|
|
name = "gossip_sim"
|
|
required-features = ["gossip"]
|
|
|
|
[[example]]
|
|
name = "replay"
|
|
required-features = ["dashboard"]
|
|
|
|
[[example]]
|
|
name = "generate_traces"
|
|
required-features = ["dashboard"]
|