Unifies the "selected" visual language across breadman's sidebar and breadpad's type chips (ghost default, solid accent when active), gives note cards a real surface instead of just a left border, caps the note list width so type chips and action buttons sit next to the title they belong to, and swaps the sidebar's full-color emoji for theme-safe monochrome glyphs plus per-type colored dots. breadman also gets live per-row sidebar counts, a note-count footer, relative timestamps with absolute-time tooltips, and a de-emphasized Errors row. breadpad's popup gets an explicit short-prefix grammar (td:, rem:, idea:, note:, q:) that live-highlights the matching chip as you type, a keyboard-shortcut hint row, and a confirm button that's visually separated from the chip row instead of reading as a sixth pill.
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[workspace]
|
|
members = [
|
|
"breadpad-shared",
|
|
"breadpad",
|
|
"breadman",
|
|
"breadpad-test",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Breadway"]
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rrule = "0.12"
|
|
tokio = { version = "1", features = ["full"] }
|
|
zbus = { version = "4", default-features = false, features = ["tokio"] }
|
|
ort = { version = "2.0.0-rc.12", default-features = false, features = ["std", "ndarray", "tracing", "api-24", "rocm", "load-dynamic"] }
|
|
ndarray = "0.16"
|
|
tokenizers = { version = "0.21", default-features = false, features = ["http", "fancy-regex"] }
|
|
gtk4 = { version = "0.11", features = ["v4_12"] }
|
|
gtk4-layer-shell = "0.8"
|
|
hyprland = "0.4.0-beta.3"
|
|
toml = "0.8"
|
|
dirs = "5"
|
|
regex = "1"
|
|
ureq = { version = "2", features = ["json"] }
|