breadbox/breadbox-sync/Cargo.toml
Breadway 423d00383b
Some checks failed
release / build (push) Failing after 4s
feat: rank search results by match quality and launch frequency
Track per-app launch counts in ~/.cache/breadbox/history.json. When a
query is active, sort visible results by fuzzy match quality (exact >
prefix > contains > subsequence) then by launch count descending, so
the most relevant and most-used app rises to the top. The base list
(no query) also surfaces most-launched apps above unvisited ones.
2026-06-07 14:35:06 +08:00

14 lines
231 B
TOML

[package]
name = "breadbox-sync"
version = "0.2.0"
edition = "2021"
license = "MIT"
[[bin]]
name = "breadbox-sync"
path = "src/main.rs"
[dependencies]
breadbox-shared = { path = "../breadbox-shared" }
serde_json = "1"
ureq = "2"