breadcrumbs/Cargo.toml
Breadway b8121ae00f
All checks were successful
Mirror to GitHub / mirror (push) Successful in 1s
release / build (push) Successful in 35s
Build and publish package / package (push) Successful in 44s
Fix breadcrumbs.service: default.target not graphical-session.target
graphical-session.target ships RefuseManualStart=yes and BOS has no
session manager to activate it properly (the same issue worked around
for breadclipd) - breadcrumbs doesn't need a Wayland session anyway,
so default.target avoids the problem entirely.
2026-07-03 17:59:38 +08:00

22 lines
455 B
TOML

[package]
name = "breadcrumbs"
version = "2.1.3"
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"