a rust tui to view amtrak train status
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 34 lines 527 B view raw
1[package] 2name = "amtracker" 3version = "0.1.0" 4edition = "2021" 5 6[dependencies] 7# TUI 8ratatui = "0.29" 9crossterm = "0.28" 10 11# Async runtime 12tokio = { version = "1", features = ["full"] } 13reqwest = { version = "0.12", features = ["json"] } 14 15# Crypto (for Amtrak data decryption) 16aes = "0.8" 17cbc = "0.1" 18pbkdf2 = "0.12" 19sha1 = "0.10" 20hmac = "0.12" 21base64 = "0.22" 22 23# Data 24serde = { version = "1", features = ["derive"] } 25serde_json = "1" 26geojson = "0.24" 27 28# Encoding 29hex = "0.4" 30 31# Error handling 32anyhow = "1" 33 34[dev-dependencies]