First set of changes to use config file instead of hard-coded settings.

This commit is contained in:
2026-05-23 11:25:41 +01:00
parent 391380040e
commit 74aa9e8a84
6 changed files with 85 additions and 19 deletions
+6 -5
View File
@@ -5,13 +5,14 @@ edition = "2024"
host = "x86_64-unknown-linux-gnu"
[dependencies]
sdl3 = {version = "0.17", features = ["ttf"]}
serde = "1.0"
gtfs-structures = "0.47"
chrono = "0.4"
log = "0.4"
zip = "8.3"
csv = "1.4"
gtfs-structures = "0.47"
log = "0.4"
sdl3 = {version = "0.17", features = ["ttf"]}
serde = { "1.0", features = ["derive"]}
serde_yaml = "0.8"
zip = "8.3"
[profile.dev]
opt-level = 3