factorio_blueprint/factorio-blueprint-generator/Cargo.toml

17 lines
609 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" }
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", features = ["small_rng"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }