Compare commits

...

2 Commits

Author SHA1 Message Date
3619eb6018 fix(deps): update all non-major dependencies
Some checks failed
renovate/artifacts Artifact file update failure
Continuous integration / Check (push) Successful in 1m26s
Continuous integration / Test Suite (push) Successful in 1m58s
Continuous integration / Trunk (push) Failing after 1m2s
Continuous integration / Rustfmt (push) Successful in 57s
Continuous integration / build (push) Successful in 2m57s
Continuous integration / Disallow unused dependencies (push) Successful in 2m26s
2025-06-23 20:57:30 +00:00
1aaf914ac5 chore: Release
All checks were successful
Continuous integration / Check (push) Successful in 1m12s
Continuous integration / Test Suite (push) Successful in 2m0s
Continuous integration / Trunk (push) Successful in 1m13s
Continuous integration / Rustfmt (push) Successful in 51s
Continuous integration / build (push) Successful in 3m1s
Continuous integration / Disallow unused dependencies (push) Successful in 2m23s
2025-06-23 13:49:28 -07:00
5 changed files with 36 additions and 36 deletions

52
Cargo.lock generated
View File

@ -2979,6 +2979,20 @@ dependencies = [
[[package]] [[package]]
name = "letterbox-notmuch" name = "letterbox-notmuch"
version = "0.17.25" version = "0.17.25"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "54aadf449457b994418d8b32daa419d596a201d3ed3aaef496165a11498cec1a"
dependencies = [
"log",
"mailparse",
"serde",
"serde_json",
"thiserror 2.0.12",
"tracing",
]
[[package]]
name = "letterbox-notmuch"
version = "0.17.26"
dependencies = [ dependencies = [
"itertools", "itertools",
"log", "log",
@ -2991,28 +3005,14 @@ dependencies = [
"tracing", "tracing",
] ]
[[package]]
name = "letterbox-notmuch"
version = "0.17.25"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "54aadf449457b994418d8b32daa419d596a201d3ed3aaef496165a11498cec1a"
dependencies = [
"log",
"mailparse",
"serde",
"serde_json",
"thiserror 2.0.12",
"tracing",
]
[[package]] [[package]]
name = "letterbox-procmail2notmuch" name = "letterbox-procmail2notmuch"
version = "0.17.25" version = "0.17.26"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",
"letterbox-notmuch 0.17.25 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)", "letterbox-notmuch 0.17.25",
"letterbox-shared 0.17.25 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)", "letterbox-shared 0.17.25",
"serde", "serde",
"sqlx", "sqlx",
"tokio 1.45.1", "tokio 1.45.1",
@ -3020,7 +3020,7 @@ dependencies = [
[[package]] [[package]]
name = "letterbox-server" name = "letterbox-server"
version = "0.17.25" version = "0.17.26"
dependencies = [ dependencies = [
"ammonia", "ammonia",
"anyhow", "anyhow",
@ -3038,8 +3038,8 @@ dependencies = [
"futures 0.3.31", "futures 0.3.31",
"headers", "headers",
"html-escape", "html-escape",
"letterbox-notmuch 0.17.25", "letterbox-notmuch 0.17.26",
"letterbox-shared 0.17.25", "letterbox-shared 0.17.26",
"linkify", "linkify",
"lol_html", "lol_html",
"mailparse", "mailparse",
@ -3064,6 +3064,8 @@ dependencies = [
[[package]] [[package]]
name = "letterbox-shared" name = "letterbox-shared"
version = "0.17.25" version = "0.17.25"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "c240d07b76a37c0fb06ae63c1a8cc7260d52a1e6ae1fc6a96ef17a36776f0085"
dependencies = [ dependencies = [
"build-info", "build-info",
"letterbox-notmuch 0.17.25", "letterbox-notmuch 0.17.25",
@ -3076,12 +3078,10 @@ dependencies = [
[[package]] [[package]]
name = "letterbox-shared" name = "letterbox-shared"
version = "0.17.25" version = "0.17.26"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "c240d07b76a37c0fb06ae63c1a8cc7260d52a1e6ae1fc6a96ef17a36776f0085"
dependencies = [ dependencies = [
"build-info", "build-info",
"letterbox-notmuch 0.17.25 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)", "letterbox-notmuch 0.17.26",
"regex", "regex",
"serde", "serde",
"sqlx", "sqlx",
@ -3091,7 +3091,7 @@ dependencies = [
[[package]] [[package]]
name = "letterbox-web" name = "letterbox-web"
version = "0.17.25" version = "0.17.26"
dependencies = [ dependencies = [
"build-info", "build-info",
"build-info-build", "build-info-build",
@ -3103,7 +3103,7 @@ dependencies = [
"graphql_client", "graphql_client",
"human_format", "human_format",
"itertools", "itertools",
"letterbox-shared 0.17.25 (sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/)", "letterbox-shared 0.17.25",
"log", "log",
"seed", "seed",
"seed_hooks", "seed_hooks",

View File

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

View File

@ -19,16 +19,16 @@ async-graphql-axum = "7.0.16"
async-trait = "0.1.88" async-trait = "0.1.88"
axum = { version = "0.8.3", features = ["ws"] } axum = { version = "0.8.3", features = ["ws"] }
axum-macros = "0.5.0" axum-macros = "0.5.0"
build-info = "0.0.40" build-info = "0.0.41"
cacher = { version = "0.2.0", registry = "xinu" } cacher = { version = "0.2.0", registry = "xinu" }
chrono = "0.4.40" chrono = "0.4.40"
clap = { version = "4.5.37", features = ["derive"] } clap = { version = "4.5.37", features = ["derive"] }
css-inline = "0.14.4" css-inline = "0.15.0"
futures = "0.3.31" futures = "0.3.31"
headers = "0.4.0" headers = "0.4.0"
html-escape = "0.2.13" html-escape = "0.2.13"
letterbox-notmuch = { path = "../notmuch", version = "0.17.25", registry = "xinu" } letterbox-notmuch = { path = "../notmuch", version = "0.17.26", registry = "xinu" }
letterbox-shared = { path = "../shared", version = "0.17.25", registry = "xinu" } letterbox-shared = { path = "../shared", version = "0.17.26", registry = "xinu" }
linkify = "0.10.0" linkify = "0.10.0"
lol_html = "2.3.0" lol_html = "2.3.0"
mailparse = "0.16.1" mailparse = "0.16.1"
@ -52,7 +52,7 @@ urlencoding = "2.1.3"
xtracing = { version = "0.3.2", registry = "xinu" } xtracing = { version = "0.3.2", registry = "xinu" }
[build-dependencies] [build-dependencies]
build-info-build = "0.0.40" build-info-build = "0.0.41"
[features] [features]
#default = [ "tantivy" ] #default = [ "tantivy" ]

View File

@ -11,8 +11,8 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
build-info = "0.0.40" build-info = "0.0.41"
letterbox-notmuch = { path = "../notmuch", version = "0.17.25", registry = "xinu" } letterbox-notmuch = { path = "../notmuch", version = "0.17.26", registry = "xinu" }
regex = "1.11.1" regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
sqlx = "0.8.5" sqlx = "0.8.5"

View File

@ -9,7 +9,7 @@ repository.workspace = true
version.workspace = true version.workspace = true
[build-dependencies] [build-dependencies]
build-info-build = "0.0.40" build-info-build = "0.0.41"
[dev-dependencies] [dev-dependencies]
wasm-bindgen-test = "0.3.50" wasm-bindgen-test = "0.3.50"
@ -28,7 +28,7 @@ graphql_client = "0.14.0"
thiserror = "2.0.12" thiserror = "2.0.12"
gloo-net = { version = "0.6.0", features = ["json", "serde_json"] } gloo-net = { version = "0.6.0", features = ["json", "serde_json"] }
human_format = "1.1.0" human_format = "1.1.0"
build-info = "0.0.40" build-info = "0.0.41"
wasm-bindgen = "=0.2.100" wasm-bindgen = "=0.2.100"
uuid = { version = "1.16.0", features = [ uuid = { version = "1.16.0", features = [
"js", "js",