Use registry version of formerly git dependencies

This commit is contained in:
Bill Thiede 2025-01-19 16:50:14 -08:00
parent b04caa9d5d
commit 087d6b9a60
3 changed files with 11 additions and 8 deletions

10
Cargo.lock generated
View File

@ -908,8 +908,9 @@ dependencies = [
[[package]] [[package]]
name = "console_log" name = "console_log"
version = "0.1.0" version = "0.1.2"
source = "git+http://git-private.h.xinu.tv/wathiede/console_log.git#164939887ebb4848ea35a0e30ea8b50736888b82" source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "e628484ff9348e6c256644436f215c0a9766867820da8cf161c567db1c877e32"
dependencies = [ dependencies = [
"log", "log",
"wasm-bindgen", "wasm-bindgen",
@ -7332,8 +7333,9 @@ checksum = "ea8b391c9a790b496184c29f7f93b9ed5b16abb306c05415b68bcc16e4d06432"
[[package]] [[package]]
name = "xtracing" name = "xtracing"
version = "0.1.0" version = "0.1.2"
source = "git+http://git-private.h.xinu.tv/wathiede/xtracing.git#ff3ac09b08ee4b01b88d3182ef2891ff53108f43" source = "sparse+https://git.z.xinu.tv/api/packages/wathiede/cargo/"
checksum = "206437814d817ca737a89e0c285f81543ca246e226fe511fd18dd23930e05a6b"
dependencies = [ dependencies = [
"chrono", "chrono",
"console-subscriber", "console-subscriber",

View File

@ -41,7 +41,8 @@ tracing = "0.1.41"
url = "2.5.2" url = "2.5.2"
urlencoding = "2.1.3" urlencoding = "2.1.3"
#xtracing = { path = "../../xtracing" } #xtracing = { path = "../../xtracing" }
xtracing = { git = "http://git-private.h.xinu.tv/wathiede/xtracing.git" } #xtracing = { git = "http://git-private.h.xinu.tv/wathiede/xtracing.git" }
xtracing = { version = "0.1.0", registry = "xinu" }
[build-dependencies] [build-dependencies]
build-info-build = "0.0.38" build-info-build = "0.0.38"

View File

@ -20,10 +20,10 @@ console_error_panic_hook = "0.1.7"
log = "0.4.17" log = "0.4.17"
seed = { version = "0.10.0", features = ["routing"] } seed = { version = "0.10.0", features = ["routing"] }
#seed = "0.9.2" #seed = "0.9.2"
console_log = {git = "http://git-private.h.xinu.tv/wathiede/console_log.git"} console_log = { version = "0.1.0", registry = "xinu" }
serde = { version = "1.0.147", features = ["derive"] } serde = { version = "1.0.147", features = ["derive"] }
notmuch = {path = "../notmuch"} notmuch = { path = "../notmuch" }
shared = {path = "../shared"} shared = { path = "../shared" }
itertools = "0.10.5" itertools = "0.10.5"
serde_json = { version = "1.0.93", features = ["unbounded_depth"] } serde_json = { version = "1.0.93", features = ["unbounded_depth"] }
chrono = "0.4.31" chrono = "0.4.31"