chore: Release
All checks were successful
Continuous integration / Check (push) Successful in 41s
Continuous integration / Test Suite (push) Successful in 45s
Continuous integration / Rustfmt (push) Successful in 32s
Continuous integration / Trunk (push) Successful in 51s
Continuous integration / build (push) Successful in 53s
Continuous integration / Disallow unused dependencies (push) Successful in 2m5s

This commit is contained in:
Bill Thiede 2025-04-22 22:28:20 -07:00
parent 27edffd090
commit 1bbebad01b
4 changed files with 30 additions and 30 deletions

52
Cargo.lock generated
View File

@ -3021,6 +3021,20 @@ dependencies = [
[[package]]
name = "letterbox-notmuch"
version = "0.17.9"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "aea61000b7ea6d2cca754dea71bafb54aa913a98f30f7b01836cce1414af5614"
dependencies = [
"log",
"mailparse",
"serde",
"serde_json",
"thiserror 2.0.12",
"tracing",
]
[[package]]
name = "letterbox-notmuch"
version = "0.17.10"
dependencies = [
"itertools",
"log",
@ -3033,28 +3047,14 @@ dependencies = [
"tracing",
]
[[package]]
name = "letterbox-notmuch"
version = "0.17.9"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "aea61000b7ea6d2cca754dea71bafb54aa913a98f30f7b01836cce1414af5614"
dependencies = [
"log",
"mailparse",
"serde",
"serde_json",
"thiserror 2.0.12",
"tracing",
]
[[package]]
name = "letterbox-procmail2notmuch"
version = "0.17.9"
version = "0.17.10"
dependencies = [
"anyhow",
"clap",
"letterbox-notmuch 0.17.9 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)",
"letterbox-shared 0.17.9 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)",
"letterbox-notmuch 0.17.9",
"letterbox-shared 0.17.9",
"serde",
"sqlx",
"tokio 1.44.2",
@ -3062,7 +3062,7 @@ dependencies = [
[[package]]
name = "letterbox-server"
version = "0.17.9"
version = "0.17.10"
dependencies = [
"ammonia",
"anyhow",
@ -3080,8 +3080,8 @@ dependencies = [
"futures 0.3.31",
"headers",
"html-escape",
"letterbox-notmuch 0.17.9",
"letterbox-shared 0.17.9",
"letterbox-notmuch 0.17.10",
"letterbox-shared 0.17.10",
"linkify",
"log",
"lol_html",
@ -3107,6 +3107,8 @@ dependencies = [
[[package]]
name = "letterbox-shared"
version = "0.17.9"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "359b4c3ab6b8a91d9a66798b3ee87285f102b7820d38f1d5d3f4be4ea7480803"
dependencies = [
"build-info",
"letterbox-notmuch 0.17.9",
@ -3119,12 +3121,10 @@ dependencies = [
[[package]]
name = "letterbox-shared"
version = "0.17.9"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "359b4c3ab6b8a91d9a66798b3ee87285f102b7820d38f1d5d3f4be4ea7480803"
version = "0.17.10"
dependencies = [
"build-info",
"letterbox-notmuch 0.17.9 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)",
"letterbox-notmuch 0.17.10",
"regex",
"serde",
"sqlx",
@ -3134,7 +3134,7 @@ dependencies = [
[[package]]
name = "letterbox-web"
version = "0.17.9"
version = "0.17.10"
dependencies = [
"build-info",
"build-info-build",
@ -3146,7 +3146,7 @@ dependencies = [
"graphql_client",
"human_format",
"itertools",
"letterbox-shared 0.17.9 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)",
"letterbox-shared 0.17.9",
"log",
"seed",
"seed_hooks",

View File

@ -8,7 +8,7 @@ authors = ["Bill Thiede <git@xinu.tv>"]
edition = "2021"
license = "UNLICENSED"
publish = ["xinu"]
version = "0.17.9"
version = "0.17.10"
repository = "https://git.z.xinu.tv/wathiede/letterbox"
[profile.dev]

View File

@ -27,8 +27,8 @@ css-inline = "0.14.4"
futures = "0.3.31"
headers = "0.4.0"
html-escape = "0.2.13"
letterbox-notmuch = { path = "../notmuch", version = "0.17.9", registry = "xinu" }
letterbox-shared = { path = "../shared", version = "0.17.9", registry = "xinu" }
letterbox-notmuch = { path = "../notmuch", version = "0.17.10", registry = "xinu" }
letterbox-shared = { path = "../shared", version = "0.17.10", registry = "xinu" }
linkify = "0.10.0"
log = "0.4.27"
lol_html = "2.3.0"

View File

@ -12,7 +12,7 @@ version.workspace = true
[dependencies]
build-info = "0.0.40"
letterbox-notmuch = { path = "../notmuch", version = "0.17.9", registry = "xinu" }
letterbox-notmuch = { path = "../notmuch", version = "0.17.10", registry = "xinu" }
regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] }
sqlx = "0.8.5"