breadcrumbs/Cargo.toml
Breadway 941742c5b6
Some checks failed
Mirror to GitHub / mirror (push) Successful in 4s
Build and publish package / package (push) Successful in 1m19s
release / build (push) Failing after 52s
2.1.4: fix blank exit-node rendering, relabel for clarity
"(exit: , optional)" printed with nothing after the colon whenever no
Tailscale exit node was configured (the default). Now renders "none",
and relabels "exit:" to "exit node:" -- the abbreviated form read as an
exit *code* at a glance, which is what led to this being misdiagnosed
as a process-exit-code formatting bug in the first place.
2026-07-05 09:14:46 +08:00

22 lines
455 B
TOML

[package]
name = "breadcrumbs"
version = "2.1.4"
edition = "2021"
description = "Profile-aware Wi-Fi state machine with Tailscale handling and self-healing watch daemon"
license = "MIT"
[[bin]]
name = "breadcrumbs"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
serde_json = "1"
[profile.release]
opt-level = "s"
lto = true
strip = true
panic = "abort"