From 38c553d3858ec5a9d96f2554e2460d439297ebf0 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Thu, 13 Feb 2025 10:16:36 -0800 Subject: [PATCH] Use packaged version of crates --- server/Cargo.toml | 4 ++-- shared/Cargo.toml | 2 +- web/Cargo.toml | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index bc34068..50ad061 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -23,7 +23,6 @@ clap = { version = "4.5.23", features = ["derive"] } css-inline = "0.14.0" futures = "0.3.31" html-escape = "0.2.13" -letterbox-notmuch = { path = "../notmuch" } linkify = "0.10.0" log = "0.4.17" lol_html = "2.0.0" @@ -38,7 +37,6 @@ rocket_cors = "0.6.0" scraper = "0.22.0" serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.87" -letterbox-shared = { path = "../shared" } sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio", "time"] } tantivy = { version = "0.22.0", optional = true } thiserror = "2.0.0" @@ -49,6 +47,8 @@ urlencoding = "2.1.3" #xtracing = { path = "../../xtracing" } #xtracing = { git = "http://git-private.h.xinu.tv/wathiede/xtracing.git" } xtracing = { version = "0.2.0", registry = "xinu" } +letterbox-notmuch = { version = "0.1.0", registry = "xinu" } +letterbox-shared = { version = "0.1.0", registry = "xinu" } [build-dependencies] build-info-build = "0.0.39" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 33a55fe..3655c04 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -11,5 +11,5 @@ publish = ["xinu"] [dependencies] build-info = "0.0.39" -letterbox-notmuch = { path = "../notmuch" } +letterbox-notmuch = { version = "0.1.0", registry = "xinu" } serde = { version = "1.0.147", features = ["derive"] } diff --git a/web/Cargo.toml b/web/Cargo.toml index 1de2c26..c6c6553 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -21,7 +21,6 @@ seed = { version = "0.10.0", features = ["routing"] } #seed = "0.9.2" console_log = { version = "0.1.0", registry = "xinu" } serde = { version = "1.0.147", features = ["derive"] } -letterbox-shared = { path = "../shared" } itertools = "0.14.0" serde_json = { version = "1.0.93", features = ["unbounded_depth"] } chrono = "0.4.31" @@ -35,6 +34,8 @@ wasm-bindgen = "=0.2.100" uuid = { version = "1.13.1", features = [ "js", ] } # direct dep to set js feature, prevents Rng issues +letterbox-shared = { version = "0.1.0", registry = "xinu" } +letterbox-notmuch = { version = "0.1.0", path = "../notmuch", registry = "xinu" } [package.metadata.wasm-pack.profile.release] wasm-opt = ['-Os']