factorio_blueprint/factorio-blueprint-generator/Cargo.toml
2025-05-01 22:06:53 +02:00

19 lines
765 B
TOML

[package]
name = "factorio-blueprint-generator"
version = "0.1.0"
edition = "2024"
[dependencies]
factorio-pathfinding = { path = "../factorio-pathfinding" }
factorio-layout = { path = "../factorio-layout" }
factorio-core = { path = "../factorio-core" }
factorio-blueprint = { path = "../factorio-blueprint" }
factorio-graph = { path = "../factorio-graph" }
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.135"
serde_yaml = "0.9.34"
clap = { version = "4.5.26", features = ["derive"] }
rand = { version = "0.9.0", default-features = false, features = ["small_rng"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-perfetto = { git = "https://git.he-li.dev/hal8174/tracing-perfetto.git" }