From 5c399003767df271d91b1ed1b8f49d41eea8fc32 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Tue, 23 Apr 2024 16:16:33 +0200 Subject: [PATCH] upgrade shipyard (fix compilation on nightly) --- Cargo.lock | 4 ++-- kubi-server/Cargo.toml | 2 +- kubi-shared/Cargo.toml | 2 +- kubi/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 82fe9c3..9f1e67e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1935,7 +1935,7 @@ dependencies = [ [[package]] name = "shipyard" version = "0.6.0" -source = "git+https://github.com/leudz/shipyard?rev=9099b990e#9099b990e332229f7e128706615c39dcd144aff3" +source = "git+https://github.com/leudz/shipyard?rev=aacf3b1df5#aacf3b1df540c7d9d384830d7431ba618eee75c9" dependencies = [ "hashbrown 0.14.3", "lock_api", @@ -1948,7 +1948,7 @@ dependencies = [ [[package]] name = "shipyard_proc" version = "0.3.0" -source = "git+https://github.com/leudz/shipyard?rev=9099b990e#9099b990e332229f7e128706615c39dcd144aff3" +source = "git+https://github.com/leudz/shipyard?rev=aacf3b1df5#aacf3b1df540c7d9d384830d7431ba618eee75c9" dependencies = [ "proc-macro2", "quote", diff --git a/kubi-server/Cargo.toml b/kubi-server/Cargo.toml index 22e603f..075eced 100644 --- a/kubi-server/Cargo.toml +++ b/kubi-server/Cargo.toml @@ -8,7 +8,7 @@ publish = false kubi-shared = { path = "../kubi-shared" } kubi-logging = { path = "../kubi-logging" } log = "0.4" -shipyard = { git = "https://github.com/leudz/shipyard", rev = "9099b990e", default-features = false, features = ["std", "proc", "thread_local"] } +shipyard = { git = "https://github.com/leudz/shipyard", rev = "aacf3b1df5", default-features = false, features = ["std", "proc", "thread_local"] } serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } toml = "0.8" glam = { version = "0.27", features = ["debug-glam-assert", "fast-math"] } diff --git a/kubi-shared/Cargo.toml b/kubi-shared/Cargo.toml index a98a259..2a05a9f 100644 --- a/kubi-shared/Cargo.toml +++ b/kubi-shared/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] glam = { version = "0.27", features = ["debug-glam-assert", "fast-math", "serde"] } -shipyard = { git = "https://github.com/leudz/shipyard", rev = "9099b990e", default-features = false, features = ["std"] } +shipyard = { git = "https://github.com/leudz/shipyard", rev = "aacf3b1df5", default-features = false, features = ["std"] } strum = { version = "0.26", features = ["derive"] } num_enum = "0.7" postcard = { version = "1.0", features = ["alloc"] } diff --git a/kubi/Cargo.toml b/kubi/Cargo.toml index 357360e..a66f4d2 100644 --- a/kubi/Cargo.toml +++ b/kubi/Cargo.toml @@ -25,7 +25,7 @@ strum = { version = "0.26", features = ["derive"] } hashbrown = "0.14" nohash-hasher = "0.2" rayon = "1.7" -shipyard = { git = "https://github.com/leudz/shipyard", rev = "9099b990e", default-features = false, features = ["std", "proc", "thread_local"] } +shipyard = { git = "https://github.com/leudz/shipyard", rev = "aacf3b1df5", default-features = false, features = ["std", "proc", "thread_local"] } anyhow = "1.0" flume = "0.11" gilrs = { version = "0.10", default_features = false, features = ["xinput"] }