diff --git a/Cargo.lock b/Cargo.lock index 8d9bb879..00f5efa2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2570,18 +2570,21 @@ dependencies = [ [[package]] name = "interprocess" -version = "1.1.1" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c58ec7fbda1df9a93f587b780659db3c99f61f4be27f9c82c9b37684ffd0366" +checksum = "81f2533f3be42fffe3b5e63b71aeca416c1c3bc33e4e27be018521e76b1f38fb" dependencies = [ "blocking", "cfg-if", - "futures", + "futures-core", + "futures-io", "intmap", "libc", "once_cell", + "rustc_version", "spinning", "thiserror", + "to_method", "winapi", ] @@ -4399,6 +4402,15 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver", +] + [[package]] name = "rustix" version = "0.35.10" @@ -4572,6 +4584,12 @@ dependencies = [ "libc", ] +[[package]] +name = "semver" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" + [[package]] name = "serde" version = "1.0.164" @@ -5289,6 +5307,12 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" +[[package]] +name = "to_method" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8" + [[package]] name = "tokio" version = "1.21.1" diff --git a/Cargo.toml b/Cargo.toml index 233850b0..043043f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ hashbrown = { version = "0.14.0", features = ["serde"] } im = { version = "15.0.0", features = ["serde"] } include_dir = "0.6.2" indexmap = { version = "2.0", features = ["serde"] } -interprocess = "1.1.1" +interprocess = "1.2.1" itertools = "0.10.1" notify = { version = "5.0.0", features = ["serde"] } once_cell = "1.17"