diff --git a/crates/rrr_chart/Cargo.toml b/crates/rrr_chart/Cargo.toml index 5624362..b293da0 100644 --- a/crates/rrr_chart/Cargo.toml +++ b/crates/rrr_chart/Cargo.toml @@ -21,7 +21,7 @@ sm = [] anyhow = "1.0.82" log = "0.4.21" rrr_types = { path = "../rrr_types" } -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } strum = { version = "0.26.2", features = ["derive"] } swf = { version = "0.2", optional = true } thiserror = "1.0" diff --git a/crates/rrr_config/Cargo.toml b/crates/rrr_config/Cargo.toml index 686faa9..3fce2ee 100644 --- a/crates/rrr_config/Cargo.toml +++ b/crates/rrr_config/Cargo.toml @@ -11,4 +11,4 @@ publish = false rust-version = "1.66.0" [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } diff --git a/crates/rrr_data/Cargo.toml b/crates/rrr_data/Cargo.toml index a7eda58..b08763c 100644 --- a/crates/rrr_data/Cargo.toml +++ b/crates/rrr_data/Cargo.toml @@ -11,7 +11,7 @@ publish = false rust-version = "1.66.0" [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } [dependencies.uuid] version = "1.8" diff --git a/crates/rrr_fetch/Cargo.toml b/crates/rrr_fetch/Cargo.toml index bdce4b8..73d4e80 100644 --- a/crates/rrr_fetch/Cargo.toml +++ b/crates/rrr_fetch/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "1.0.82" log = "0.4.21" rrr_playlist = { path = "../rrr_playlist" } rrr_types = { path = "../rrr_types" } -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } serde_json = "1.0.116" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/crates/rrr_input/Cargo.toml b/crates/rrr_input/Cargo.toml index 68c5a7d..db67916 100644 --- a/crates/rrr_input/Cargo.toml +++ b/crates/rrr_input/Cargo.toml @@ -11,4 +11,4 @@ publish = false rust-version = "1.64.0" [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } diff --git a/crates/rrr_playlist/Cargo.toml b/crates/rrr_playlist/Cargo.toml index 00df9ca..7173c67 100644 --- a/crates/rrr_playlist/Cargo.toml +++ b/crates/rrr_playlist/Cargo.toml @@ -13,4 +13,4 @@ rust-version = "1.66.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } diff --git a/crates/rrr_settings/Cargo.toml b/crates/rrr_settings/Cargo.toml index 6b96893..721ed36 100644 --- a/crates/rrr_settings/Cargo.toml +++ b/crates/rrr_settings/Cargo.toml @@ -13,4 +13,4 @@ rust-version = "1.66.0" [dependencies] rrr_settings_core = { path = "../rrr_settings_core" } rrr_types = { path = "../rrr_types" } -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } diff --git a/crates/rrr_settings_core/Cargo.toml b/crates/rrr_settings_core/Cargo.toml index 30c0940..3c6d639 100644 --- a/crates/rrr_settings_core/Cargo.toml +++ b/crates/rrr_settings_core/Cargo.toml @@ -13,4 +13,4 @@ rust-version = "1.66.0" [dependencies] rrr_input = { path = "../rrr_input" } rrr_types = { path = "../rrr_types" } -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } diff --git a/crates/rrr_types/Cargo.toml b/crates/rrr_types/Cargo.toml index 57061e9..3c90b33 100644 --- a/crates/rrr_types/Cargo.toml +++ b/crates/rrr_types/Cargo.toml @@ -11,7 +11,7 @@ publish = false rust-version = "1.66.0" [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = "0.2" diff --git a/crates/rrr_window/Cargo.toml b/crates/rrr_window/Cargo.toml index 82fa091..11e8496 100644 --- a/crates/rrr_window/Cargo.toml +++ b/crates/rrr_window/Cargo.toml @@ -26,7 +26,7 @@ rrr_config = { path = "../rrr_config" } rrr_game = { path = "../rrr_game" } rrr_input = { path = "../rrr_input" } rrr_time = { path = "../rrr_time" } -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.200", features = ["derive"] } [target.'cfg(unix)'.dependencies] winit = { version = "0.28", default-features = false, features = ['x11'] }