diff --git a/crates/tauri-build/Cargo.toml b/crates/tauri-build/Cargo.toml index abcda0482054..6d2f099a9d41 100644 --- a/crates/tauri-build/Cargo.toml +++ b/crates/tauri-build/Cargo.toml @@ -45,7 +45,7 @@ dirs = "6" glob = "0.3" toml = "0.8" # Our code requires at least 0.8.21 so don't simplify this to 0.8 -schemars = { version = "0.8.21", features = ["preserve_order"] } +schemars = { version = "0.9.0", features = ["preserve_order"] } [features] default = ["config-json"] diff --git a/crates/tauri-plugin/Cargo.toml b/crates/tauri-plugin/Cargo.toml index 8238423fdfc6..8514e11e70b3 100644 --- a/crates/tauri-plugin/Cargo.toml +++ b/crates/tauri-plugin/Cargo.toml @@ -37,7 +37,7 @@ serde_json = { version = "1", optional = true } glob = { version = "0.3", optional = true } toml = { version = "0.8", optional = true } # Our code requires at least 0.8.21 so don't simplify this to 0.8 -schemars = { version = "0.8.21", features = ["preserve_order"] } +schemars = { version = "0.9.0", features = ["preserve_order"] } walkdir = { version = "2", optional = true } [target."cfg(target_os = \"macos\")".dependencies] diff --git a/crates/tauri-schema-generator/Cargo.toml b/crates/tauri-schema-generator/Cargo.toml index d2e8801d43bf..cf0541657fde 100644 --- a/crates/tauri-schema-generator/Cargo.toml +++ b/crates/tauri-schema-generator/Cargo.toml @@ -6,7 +6,7 @@ publish = false [build-dependencies] tauri-utils = { features = ["schema"], path = "../tauri-utils" } -schemars = { version = "0.8.21", features = ["url", "preserve_order"] } +schemars = { version = "0.9.0", features = ["url", "preserve_order"] } serde = { version = "1", features = ["derive"] } serde_json = "1" url = { version = "2", features = ["serde"] } diff --git a/crates/tauri-utils/Cargo.toml b/crates/tauri-utils/Cargo.toml index 4f8a7e488249..43d9e3899171 100644 --- a/crates/tauri-utils/Cargo.toml +++ b/crates/tauri-utils/Cargo.toml @@ -27,7 +27,7 @@ kuchiki = { package = "kuchikiki", version = "0.8.8-speedreader", optional = tru proc-macro2 = { version = "1", optional = true } quote = { version = "1", optional = true } # Our code requires at least 0.8.21 so don't change this to 0.8 -schemars = { version = "0.8.21", features = ["url", "uuid1"], optional = true } +schemars = { version = "0.9.0", features = ["url", "uuid1"], optional = true } serde_with = "3" aes-gcm = { version = "0.10", optional = true } getrandom = { version = "0.3", optional = true, features = ["std"] }