From 06047f5318388a67740d3f9476103bd8d5cd03c0 Mon Sep 17 00:00:00 2001 From: dignifiedquire Date: Tue, 14 May 2024 19:56:26 +0200 Subject: [PATCH] update --- Cargo.lock | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc8b968..65e7ece 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -512,7 +512,8 @@ dependencies = [ [[package]] name = "interprocess" version = "2.1.0" -source = "git+https://github.com/kotauskas/interprocess?branch=main#b79d3636152158f7a8977f8043188e89446916c5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b4d0250d41da118226e55b3d50ca3f0d9e0a0f6829b92f543ac0054aeea1572" dependencies = [ "futures-core", "libc", diff --git a/Cargo.toml b/Cargo.toml index 3dc248b..e802be1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ tokio-serde = { version = "0.8", features = ["bincode"], optional = true } tokio-util = { version = "0.7", features = ["codec", "compat"], optional = true } tracing = "0.1" quinn-udp = { package = "iroh-quinn-udp", version = "0.4.0", optional = true } -interprocess = { git = "https://github.com/kotauskas/interprocess", branch = "main", version = "2", features = ["tokio"], optional = true } +interprocess = { version = "2.1", features = ["tokio"], optional = true } hex = "0.4.3" blake3 = "1.4.1" futures = { version = "0.3.30", optional = true }