[package] name = "the-septa-times" version = "0.7.0" edition = "2021" description = "A CLI application for the SEPTA API" homepage = "https://github.com/dotzenith/TheSeptaTimes.rs" repository = "https://github.com/dotzenith/TheSeptaTimes.rs" license = "MIT" autobins = false [[bin]] name = "tst" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] colored = "2" bincode = "1.3.3" anyhow = "1.0.75" scraper = "0.18.1" platform-dirs = "0.3.0" fuzzy-matcher = "0.3.7" clap = { version = "4.4.9", features = ["cargo"] } serde = { version = "1.0.192", features = ["derive"] } reqwest = { version = "0.11.20", default-features = false, features = ["blocking", "json", "rustls-tls"] } # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.14.1" # CI backends to support ci = "github" # The installers to generate for each app installers = ["shell", "powershell", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "dotzenith/homebrew-tap" # Target platforms to build apps for (Rust target-triple syntax) targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI publish-jobs = ["homebrew"] # Publish jobs to run in CI pr-run-mode = "skip" # Whether to install an updater program install-updater = false [workspace.metadata.dist.github-custom-runners] aarch64-unknown-linux-gnu = "buildjet-2vcpu-ubuntu-2204-arm"