diff --git a/Cargo.toml b/Cargo.toml index 3d2ee3a..66b376d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ chrono = { version = "0.4.24", features = ["serde"] } futures = "0.3.28" getset = "0.1.2" num_cpus = "1.15.0" -serde = { version = "1.0.159", features = ["derive"] } +serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.95" sqlx = { version = "0.6.3", features = ["postgres", "json", "chrono"] } thiserror = "1.0.40" diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index 80f1da1..e54a9c1 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -15,7 +15,7 @@ readme = "README.md" archimedes_crontab_types = { path = "../crontab_types" , version = "0.4.0" } json5 = "0.4.1" nom = "7.1.3" -serde = { version = "1.0.159", features = ["derive"] } +serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.95" serde_qs = "0.12.0" thiserror = "1.0.40" diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index df54a4c..54be4ec 100644 --- a/crates/crontab_runner/Cargo.toml +++ b/crates/crontab_runner/Cargo.toml @@ -22,7 +22,7 @@ archimedes_shutdown_signal = { path = "../shutdown_signal" , version = "0.2.4" } chrono = { version = "0.4.24", features = ["serde"] } sqlx = { version = "0.6.3", features = ["chrono", "postgres", "json"] } thiserror = "1.0.40" -serde = { version = "1.0.159", features = ["derive"] } +serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.95" getset = "0.1.2" tracing = "0.1.37" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 7e1ec67..a5f8f20 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -16,7 +16,7 @@ itertools = "0.10.5" once_cell = "1.17.1" percent-encoding = "2.2.0" regex = "1.7.3" -serde = { version = "1.0.159", features = ["derive"] } +serde = { version = "1.0.160", features = ["derive"] } structstruck = "0.4.0" toml = "0.7.3" toml_edit = { version = "0.19.8", features = ["serde"] }