Compare commits

...

3 Commits

8 changed files with 13 additions and 13 deletions

10
Cargo.lock generated
View File

@ -2910,7 +2910,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "letterbox"
version = "0.0.120"
version = "0.0.121"
dependencies = [
"build-info",
"build-info-build",
@ -2936,7 +2936,7 @@ dependencies = [
[[package]]
name = "letterbox-server"
version = "0.0.120"
version = "0.0.121"
dependencies = [
"ammonia",
"anyhow",
@ -3456,7 +3456,7 @@ dependencies = [
[[package]]
name = "notmuch"
version = "0.0.120"
version = "0.0.121"
dependencies = [
"itertools 0.10.5",
"log",
@ -4251,7 +4251,7 @@ dependencies = [
[[package]]
name = "procmail2notmuch"
version = "0.0.120"
version = "0.0.121"
dependencies = [
"anyhow",
]
@ -5330,7 +5330,7 @@ dependencies = [
[[package]]
name = "shared"
version = "0.0.120"
version = "0.0.121"
dependencies = [
"build-info",
"notmuch",

View File

@ -1,6 +1,6 @@
[package]
name = "notmuch"
version = "0.0.120"
version = "0.0.121"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package]
name = "procmail2notmuch"
version = "0.0.120"
version = "0.0.121"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
{
"db_name": "PostgreSQL",
"query": "SELECT\n p.id,\n link,\n clean_summary\nFROM\n post AS p\nINNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts\nWHERE search_summary IS NULL;\n",
"query": "SELECT\n p.id,\n link,\n clean_summary\nFROM\n post AS p TABLESAMPLE SYSTEM (.1)\nINNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts\nWHERE search_summary IS NULL;\n",
"describe": {
"columns": [
{
@ -28,5 +28,5 @@
true
]
},
"hash": "3900728293604ff2c174c208386699b1898f9e74447963b931c7ba1c94d75b7b"
"hash": "078322a8e99faa6b91e3890501f6763e8787b181d5fd070267180b0d5180ca36"
}

View File

@ -1,6 +1,6 @@
[package]
name = "letterbox-server"
version = "0.0.120"
version = "0.0.121"
edition = "2021"
default-run = "letterbox-server"

View File

@ -3,6 +3,6 @@ SELECT
link,
clean_summary
FROM
post AS p
post AS p TABLESAMPLE SYSTEM (.1)
INNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts
WHERE search_summary IS NULL;

View File

@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.0.120"
version = "0.0.121"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,5 +1,5 @@
[package]
version = "0.0.120"
version = "0.0.121"
name = "letterbox"
repository = "https://github.com/seed-rs/seed-quickstart"
authors = ["Bill Thiede <git@xinu.tv>"]