Compare commits

...

2 Commits

Author SHA1 Message Date
b04caa9d5d Bumping version to 0.0.113 2025-01-17 15:51:39 -08:00
17b1125ea3 server: Use crate version of cacher 2025-01-17 15:51:28 -08:00
8 changed files with 25 additions and 18 deletions

View File

@ -2,3 +2,9 @@
[build]
rustflags = [ "--cfg=web_sys_unstable_apis" ]
[registry]
default = "xinu"
global-credential-providers = ["cargo:token"]
[registries.xinu]
index = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"

15
Cargo.lock generated
View File

@ -671,8 +671,9 @@ dependencies = [
[[package]]
name = "cacher"
version = "0.1.0"
source = "git+http://git-private.h.xinu.tv/wathiede/cacher.git#4f59e1f04329fc88935f2d5c503cff8cca9064b1"
version = "0.1.3"
source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "3efe80fe16e1636f1bbcee7aeaa7b736980ed8ab0c7ac90fb17008d6ab6e8f77"
dependencies = [
"async-trait",
"bitcode",
@ -2908,7 +2909,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "letterbox"
version = "0.0.112"
version = "0.0.113"
dependencies = [
"build-info",
"build-info-build",
@ -2934,7 +2935,7 @@ dependencies = [
[[package]]
name = "letterbox-server"
version = "0.0.112"
version = "0.0.113"
dependencies = [
"ammonia",
"anyhow",
@ -3453,7 +3454,7 @@ dependencies = [
[[package]]
name = "notmuch"
version = "0.0.112"
version = "0.0.113"
dependencies = [
"itertools 0.10.5",
"log",
@ -4248,7 +4249,7 @@ dependencies = [
[[package]]
name = "procmail2notmuch"
version = "0.0.112"
version = "0.0.113"
dependencies = [
"anyhow",
]
@ -5327,7 +5328,7 @@ dependencies = [
[[package]]
name = "shared"
version = "0.0.112"
version = "0.0.113"
dependencies = [
"build-info",
"notmuch",

View File

@ -1,6 +1,6 @@
[package]
name = "notmuch"
version = "0.0.112"
version = "0.0.113"
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.112"
version = "0.0.113"
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 = "letterbox-server"
version = "0.0.112"
version = "0.0.113"
edition = "2021"
default-run = "letterbox-server"
@ -13,7 +13,7 @@ async-graphql = { version = "7", features = ["log"] }
async-graphql-rocket = "7"
async-trait = "0.1.81"
build-info = "0.0.38"
cacher = {git = "http://git-private.h.xinu.tv/wathiede/cacher.git"}
cacher = { version = "0.1.0", registry = "xinu" }
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive"] }
css-inline = "0.13.0"
@ -27,7 +27,7 @@ memmap = "0.7.0"
notmuch = { path = "../notmuch" }
opentelemetry = "0.27.1"
reqwest = { version = "0.12.7", features = ["blocking"] }
rocket = { version = "0.5.0-rc.2", features = [ "json" ] }
rocket = { version = "0.5.0-rc.2", features = ["json"] }
rocket_cors = "0.6.0"
scraper = "0.20.0"
serde = { version = "1.0.147", features = ["derive"] }
@ -48,4 +48,4 @@ build-info-build = "0.0.38"
[features]
#default = [ "tantivy" ]
tantivy = [ "dep:tantivy" ]
tantivy = ["dep:tantivy"]

View File

@ -1,5 +1,5 @@
fn main() {
// Calling `build_info_build::build_script` collects all data and makes it available to `build_info::build_info!`
// and `build_info::format!` in the main program.
build_info_build::build_script();
// Calling `build_info_build::build_script` collects all data and makes it available to `build_info::build_info!`
// and `build_info::format!` in the main program.
build_info_build::build_script();
}

View File

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