From b933b2a113b5d8809289a97134f58f13059489a6 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Thu, 27 Nov 2025 09:58:07 -0800 Subject: [PATCH] Normalize all letterbox dependency versions --- procmail2notmuch/Cargo.toml | 4 ++-- server/Cargo.toml | 4 ++-- shared/Cargo.toml | 2 +- web/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/procmail2notmuch/Cargo.toml b/procmail2notmuch/Cargo.toml index 39d6e73..c4305db 100644 --- a/procmail2notmuch/Cargo.toml +++ b/procmail2notmuch/Cargo.toml @@ -13,8 +13,8 @@ version.workspace = true [dependencies] anyhow = "1.0.98" clap = { version = "4.5.37", features = ["derive", "env"] } -letterbox-notmuch = { version = "0.17.9", registry = "xinu" } -letterbox-shared = { version = "0.17.9", registry = "xinu" } +letterbox-notmuch = { version = "0.17", registry = "xinu" } +letterbox-shared = { version = "0.17", registry = "xinu" } serde = { version = "1.0.219", features = ["derive"] } sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio"] } tokio = { version = "1.44.2", features = ["rt", "macros", "rt-multi-thread"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index d3f053c..26802c4 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -32,8 +32,8 @@ futures = "0.3.31" headers = "0.4.0" html-escape = "0.2.13" ical = "0.11" -letterbox-notmuch = { path = "../notmuch", version = "0.17.52", registry = "xinu" } -letterbox-shared = { path = "../shared", version = "0.17.52", registry = "xinu" } +letterbox-notmuch = { path = "../notmuch", version = "0.17", registry = "xinu" } +letterbox-shared = { path = "../shared", version = "0.17", registry = "xinu" } linkify = "0.10.0" lol_html = "2.3.0" mailparse = "0.16.1" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 77ceb03..3b53404 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -12,7 +12,7 @@ version.workspace = true [dependencies] build-info = "0.0.42" -letterbox-notmuch = { path = "../notmuch", version = "0.17.52", registry = "xinu" } +letterbox-notmuch = { path = "../notmuch", version = "0.17", registry = "xinu" } regex = "1.11.1" serde = { version = "1.0.219", features = ["derive"] } sqlx = "0.8.5" diff --git a/web/Cargo.toml b/web/Cargo.toml index f12db29..fa78f8e 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -33,7 +33,7 @@ wasm-bindgen = "=0.2.100" uuid = { version = "1.16.0", features = [ "js", ] } # direct dep to set js feature, prevents Rng issues -letterbox-shared = { path = "../shared/", version = "0.17.52", registry = "xinu" } +letterbox-shared = { path = "../shared/", version = "0.17", registry = "xinu" } seed_hooks = { version = "0.4.1", registry = "xinu" } strum_macros = "0.27.1" gloo-console = "0.3.0"