/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "plat0-scraper"
 3  version = "0.1.0"
 4  edition = "2021"
 5  authors = ["blltrx <blltrx@roseis.gay>"]
 6  description = "A web scraper for RealTimeTrains focusing of historical platform allocation"
 7  readme = "README.md"
 8  repository = "https://git.gay/blltrx/plat0"
 9  license = "MIT"
10  
11  [dependencies]
12  chrono = "0.4.38"
13  clap = { version = "4.5.4", features = ["derive"] }
14  reqwest = { version = "0.12.3", features = ["blocking"] }
15  scraper = "0.19.0"
16  
17  [lints.clippy] # come at me, clippy
18  pedantic      = { level = "deny", priority = -1 }
19  nursery       = { level = "deny", priority = -1 }
20  unwrap_used   = "deny"