diff --git a/Cargo.lock b/Cargo.lock index c89b1157..ada21985 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1589,9 +1589,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", @@ -1737,9 +1737,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.114" +version = "1.0.115" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" +checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" dependencies = [ "itoa", "ryu", @@ -1787,9 +1787,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.33" +version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0623d197252096520c6f2a5e1171ee436e5af99a5d7caa2891e55e61950e6d9" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ "indexmap 2.2.2", "itoa", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index a19723b3..12db3d1e 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -32,13 +32,13 @@ once_cell = "1.19" openssl = "^0.10.64" # TODO drop this in favor of rustix nix = { version = "0.28", features = ["ioctl", "sched"] } -regex = "1.10.3" +regex = "1.10.4" rustix = { "version" = "0.38", features = ["thread", "fs", "system", "process"] } schemars = { version = "0.8.16", features = ["chrono"] } serde = { features = ["derive"], version = "1.0.197" } serde_ignored = "0.1.10" -serde_json = "1.0.114" -serde_yaml = "0.9.33" +serde_json = "1.0.115" +serde_yaml = "0.9.34" serde_with = ">= 3.7.0, < 4" tokio = { features = ["io-std", "time", "process", "rt", "net"], version = ">= 1.36.0" } tokio-util = { features = ["io-util"], version = "0.7" }