diff --git a/Cargo.toml b/Cargo.toml index 96633ab..54eef63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ futures = "0.3.26" getset = "0.1.2" num_cpus = "1.15.0" serde = { version = "1.0.152", features = ["derive"] } -serde_json = "1.0.92" +serde_json = "1.0.93" sqlx = { version = "0.6.2", features = ["postgres", "json", "chrono"] } thiserror = "1.0.38" tracing = "0.1.37" diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index 7da060e..1e50d62 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -18,6 +18,6 @@ archimedes_crontab_types = { path = "../crontab_types", version = "0.1.0" } json5 = "0.4.1" nom = "7.1.3" serde = { version = "1.0.152", features = ["derive"] } -serde_json = "1.0.92" +serde_json = "1.0.93" serde_qs = "0.11.0" thiserror = "1.0.38" diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index 61c3e75..5eaf556 100644 --- a/crates/crontab_runner/Cargo.toml +++ b/crates/crontab_runner/Cargo.toml @@ -23,7 +23,7 @@ chrono = { version = "0.4.23", features = ["serde"] } sqlx = { version = "0.6.2", features = ["chrono", "postgres", "json"] } thiserror = "1.0.38" serde = { version = "1.0.152", features = ["derive"] } -serde_json = "1.0.92" +serde_json = "1.0.93" getset = "0.1.2" tracing = "0.1.37" once_cell = "1.17.0" diff --git a/crates/crontab_types/Cargo.toml b/crates/crontab_types/Cargo.toml index eadae63..dc3bd9a 100644 --- a/crates/crontab_types/Cargo.toml +++ b/crates/crontab_types/Cargo.toml @@ -16,7 +16,7 @@ readme = "README.md" [dependencies] chrono = "0.4.23" getset = "0.1.2" -serde_json = "1.0.92" +serde_json = "1.0.93" [dev-dependencies] anyhow = "1.0.69"