Skip to content

Commit

Permalink
fix(deps): update rust crate serde to 1.0.200 (#127)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored May 2, 2024
1 parent c9cf7cb commit 9e8e034
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion crates/rrr_chart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/rrr_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion crates/rrr_data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/rrr_fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crates/rrr_input/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion crates/rrr_playlist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion crates/rrr_settings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion crates/rrr_settings_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion crates/rrr_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion crates/rrr_window/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'] }
Expand Down

0 comments on commit 9e8e034

Please sign in to comment.