- Add MIT LICENSE file - Expand .gitignore with standard Rust/Linux entries - Remove dangling symlinks (breadmancli, breadpadcli) and dev scratchpad (svgs.txt) from git tracking - Replace unsafe unwrap() calls with expect() in breadman CLI (guarded by prior filter) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
23 lines
493 B
TOML
23 lines
493 B
TOML
[package]
|
|
name = "breadman"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "breadman"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
breadpad-shared = { path = "../breadpad-shared" }
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
chrono.workspace = true
|
|
gtk4.workspace = true
|
|
dirs.workspace = true
|
|
futures-channel = "0.3"
|