Compare commits

...

3 Commits

Author SHA1 Message Date
93bb4a27b9 Bumping version to 0.0.76 2024-12-19 18:44:31 -08:00
0456efeed4 cargo sqlx prepare 2024-12-19 18:44:30 -08:00
3ac2fa290f server: use git version of xtracing 2024-12-19 18:44:13 -08:00
8 changed files with 59 additions and 12 deletions

11
Cargo.lock generated
View File

@ -2839,7 +2839,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "letterbox"
version = "0.0.75"
version = "0.0.76"
dependencies = [
"build-info",
"build-info-build",
@ -3343,7 +3343,7 @@ dependencies = [
[[package]]
name = "notmuch"
version = "0.0.75"
version = "0.0.76"
dependencies = [
"itertools 0.10.5",
"log",
@ -4137,7 +4137,7 @@ dependencies = [
[[package]]
name = "procmail2notmuch"
version = "0.0.75"
version = "0.0.76"
dependencies = [
"anyhow",
]
@ -5139,7 +5139,7 @@ dependencies = [
[[package]]
name = "server"
version = "0.0.75"
version = "0.0.76"
dependencies = [
"ammonia",
"anyhow",
@ -5248,7 +5248,7 @@ dependencies = [
[[package]]
name = "shared"
version = "0.0.75"
version = "0.0.76"
dependencies = [
"build-info",
"notmuch",
@ -7251,6 +7251,7 @@ checksum = "ea8b391c9a790b496184c29f7f93b9ed5b16abb306c05415b68bcc16e4d06432"
[[package]]
name = "xtracing"
version = "0.1.0"
source = "git+http://git-private.h.xinu.tv/wathiede/xtracing.git#2802b8f6e2ef98895c703f1e6107a7396876f256"
dependencies = [
"chrono",
"if_empty",

View File

@ -1,6 +1,6 @@
[package]
name = "notmuch"
version = "0.0.75"
version = "0.0.76"
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.75"
version = "0.0.76"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -0,0 +1,22 @@
{
"db_name": "PostgreSQL",
"query": "\nSELECT id\nFROM feed\nWHERE slug = $1\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Int4"
}
],
"parameters": {
"Left": [
"Text"
]
},
"nullable": [
false
]
},
"hash": "dabd12987369cb273c0191d46645c376439d246d5a697340574c6afdac93d2cc"
}

View File

@ -0,0 +1,24 @@
{
"db_name": "PostgreSQL",
"query": "\nINSERT INTO feed ( name, slug, url, homepage, selector )\nVALUES ( $1, $2, $3, '', '' )\nRETURNING id\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Int4"
}
],
"parameters": {
"Left": [
"Text",
"Text",
"Text"
]
},
"nullable": [
false
]
},
"hash": "e2a448aaf4fe92fc1deda10bf844f6b9225d35758cba7c9f337c1a730aee41bd"
}

View File

@ -1,6 +1,6 @@
[package]
name = "server"
version = "0.0.75"
version = "0.0.76"
edition = "2021"
default-run = "server"
@ -40,8 +40,8 @@ tokio = "1.26.0"
tracing = "0.1.41"
url = "2.5.2"
urlencoding = "2.1.3"
xtracing = { path = "../../xtracing" }
#xtracing = { git = "http://git-private.h.xinu.tv/wathiede/xtracing.git" }
#xtracing = { path = "../../xtracing" }
xtracing = { git = "http://git-private.h.xinu.tv/wathiede/xtracing.git" }
[build-dependencies]
build-info-build = "0.0.38"

View File

@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.0.75"
version = "0.0.76"
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.75"
version = "0.0.76"
name = "letterbox"
repository = "https://github.com/seed-rs/seed-quickstart"
authors = ["Bill Thiede <git@xinu.tv>"]