Files
runway/crates/runway-cli/Cargo.toml
T
connor c197e08af0 Default the CLI to the system time zone
It shipped with America/Denver hardcoded, taken from what dominates the
historical data on the server. That data is old; the reader has moved.
A zone belongs to whoever is looking at the calendar, and baking one in is
the same mistake as v1's offset-instead-of-zone in miniature -- it looks
right until the reader is somewhere else.

Falls back to UTC rather than to a populated guess: an obviously neutral
wrong answer gets noticed, a plausible one does not.
2026-08-26 15:38:55 -04:00

21 lines
567 B
TOML

[package]
name = "runway-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Smoke tool for exercising a real CalDAV server from the terminal."
[dependencies]
runway-core = { workspace = true, features = ["ical", "recurrence"] }
runway-caldav = { workspace = true }
chrono = { workspace = true }
chrono-tz = { workspace = true }
clap = { workspace = true }
iana-time-zone = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[lints]
workspace = true