19 lines
739 B
TOML
19 lines
739 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", 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" }
|