17 lines
505 B
TOML
17 lines
505 B
TOML
[package]
|
|
name = "factorio-layout"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
factorio-core = { path = "../factorio-core" }
|
|
factorio-pathfinding = { path = "../factorio-pathfinding" }
|
|
rand = { version = "0.9.0", features = ["small_rng"] }
|
|
serde = { version = "1.0.192", features = ["derive"] }
|
|
image = "0.25.2"
|
|
serde_json = "1.0.108"
|
|
clap = { version = "4.4.8", features = ["derive"] }
|
|
miette = { version = "7.2.0", features = ["fancy"] }
|
|
serde_yaml = "0.9.34"
|
|
tracing = "0.1.41"
|
|
rayon = "1.10.0"
|