diff --git a/Cargo.lock b/Cargo.lock index 72fac4b9..06aa1acc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,7 +127,7 @@ dependencies = [ "serde", "serde_json", "shared-backend", - "shared-core", + "shared-core 3.0.39", "tokio", "tower-http 0.7.0", "tracing", @@ -1631,7 +1631,7 @@ dependencies = [ "log", "serde", "serde_json", - "shared-core", + "shared-core 3.0.39", "shared-frontend", "wasm-bindgen", "wasm-bindgen-futures", @@ -1792,7 +1792,7 @@ dependencies = [ "ipnet", "rusqlite", "serde", - "shared-core", + "shared-core 3.0.33", "thiserror 2.0.18", "tokio", "tower-http 0.6.11", @@ -1809,14 +1809,23 @@ dependencies = [ "serde", ] +[[package]] +name = "shared-core" +version = "3.0.39" +source = "git+https://github.com/studio2201/shared-assets.git?tag=v3.0.39#d9d716ba42b270f2dc3519357f915956d8ff79be" +dependencies = [ + "constant_time_eq 0.3.1", + "serde", +] + [[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", + "shared-core 3.0.39", "wasm-bindgen", "web-sys", "yew", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 5e987ac5..377db630 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -28,7 +28,7 @@ chrono = { version = "0.4", features = ["serde"] } tracing = "0.1" constant_time_eq = "0.5" rand = { version = "0.10", features = ["std", "thread_rng"] } -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.33" } [dev-dependencies] reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "cookies"] } diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml index 37dc3063..2240902c 100644 --- a/frontend/Cargo.toml +++ b/frontend/Cargo.toml @@ -21,8 +21,8 @@ gloo-timers = "0.4" gloo-utils = "0.3" gloo-events = "0.3" gloo-net = "0.7" -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" } chrono = { version = "0.4", features = ["serde"] } base64 = "0.23" blowfish = "0.10"