swactor/crates/simulation/Cargo.toml
Zachery Aaron Shores-Chmielewski ee31b6623f
Some checks failed
ci/check Job 'check' failed: command exited with code 101 [stderr] | |_^ [stderr] | [stderr] = note: the lang item is first defined in crate `std` (which `ed25519_dalek` depends on) [stderr] = note: first definition in `std` loaded from /home/z...
ci/clippy Job 'clippy' failed: command exited with code 101 [stderr] help: try adding this [stderr] | [stderr] 157 + impl Default for TransportRouter { [stderr] 158 + fn default() -> Self { [stderr] 159 + Self::new() [stderr] 160 + } [st...
ci/ci Pipeline 'ci' failure
feat: mvp ci workflow (#42)
Not working too well and difficult to track, but has a skeleton there to work from.
Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-16 15:57:55 +00:00

37 lines
876 B
TOML

[package]
name = "simulation"
version = "0.1.0"
edition = "2024"
[features]
default = []
gossip = ["dep:log"]
dashboard = ["gossip", "dep:tiny_http", "dep:toml"]
ci = ["dep:swactor-ci"]
[dependencies]
distribution = { path = "../distribution" }
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 }
swactor-ci = { path = "../ci", optional = true }
[dev-dependencies]
simulation = { path = ".", features = ["gossip", "ci"] }
swactor-ci = { path = "../ci" }
[[example]]
name = "gossip_sim"
required-features = ["gossip"]
[[example]]
name = "replay"
required-features = ["dashboard"]
[[example]]
name = "generate_traces"
required-features = ["dashboard"]