diff --git a/Cargo.lock b/Cargo.lock index ddbaf19..aab94b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ "serde_json", "sha2", "shared-backend", - "shared-core 3.0.33", + "shared-core", "tempfile", "thiserror 2.0.18", "time", @@ -531,7 +531,7 @@ dependencies = [ "percent-encoding", "serde", "serde_json", - "shared-core 3.0.33", + "shared-core", "shared-frontend", "wasm-bindgen", "wasm-bindgen-futures", @@ -2016,7 +2016,7 @@ dependencies = [ "rusqlite", "serde", "serde_json", - "shared-core 3.0.39", + "shared-core", "thiserror 2.0.18", "time", "tokio", @@ -2025,15 +2025,6 @@ dependencies = [ "tracing-subscriber", ] -[[package]] -name = "shared-core" -version = "3.0.33" -source = "git+https://github.com/studio2201/shared-assets.git?tag=v3.0.33#5c1f076b40ab66804648a645cc37978056d104f5" -dependencies = [ - "constant_time_eq 0.3.1", - "serde", -] - [[package]] name = "shared-core" version = "3.0.39" @@ -2045,12 +2036,12 @@ dependencies = [ [[package]] name = "shared-frontend" -version = "3.0.33" -source = "git+https://github.com/studio2201/shared-assets.git?tag=v3.0.33#5c1f076b40ab66804648a645cc37978056d104f5" +version = "3.0.39" +source = "git+https://github.com/studio2201/shared-assets.git?tag=v3.0.39#d9d716ba42b270f2dc3519357f915956d8ff79be" dependencies = [ "js-sys", "serde", - "shared-core 3.0.33", + "shared-core", "wasm-bindgen", "web-sys", "yew", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 70cceeb..9c0db8e 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -18,7 +18,7 @@ name = "sh" path = "src/bin/sh/main.rs" [dependencies] -shared-core = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.33" } +shared-core = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.39" } shared-backend = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.39" } axum = { version = "0.8", features = ["ws", "macros"] } tokio = { version = "1", features = ["full"] } diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml index 4ff4531..6bf4c1a 100644 --- a/frontend/Cargo.toml +++ b/frontend/Cargo.toml @@ -18,8 +18,8 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" gloo-net = { version = "0.7", features = ["websocket", "http"] } gloo-timers = { version = "0.4", features = ["futures"] } -shared-frontend = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.33" } -shared-core = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.33" } +shared-frontend = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.39" } +shared-core = { git = "https://github.com/studio2201/shared-assets.git", tag = "v3.0.39" } futures-util = "0.3" futures-channel = "0.3" percent-encoding = "2.3" diff --git a/frontend/src/app/view.rs b/frontend/src/app/view.rs index 9fc1bc7..cdd9516 100644 --- a/frontend/src/app/view.rs +++ b/frontend/src/app/view.rs @@ -9,7 +9,7 @@ use crate::components::footer::Footer; use crate::components::header::Header; use crate::components::pin::Login; use crate::components::scan_game::ScanGame; -use shared_core::i18n::Language; +use shared_frontend::i18n::Language; use yew::prelude::*; impl App {