server: Use crate version of cacher

This commit is contained in:
Bill Thiede 2025-01-17 15:51:16 -08:00
parent a8ac79d396
commit 17b1125ea3
4 changed files with 15 additions and 8 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/"

5
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",

View File

@ -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();
}