From a3f436104f41778a6c7ae4e5695379b7565cc4b7 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 18 May 2021 12:52:17 +1000 Subject: [PATCH] Use tokio-tar from crates.io --- Cargo.lock | 5 +++-- Cargo.toml | 3 --- swap/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65834f72..fb75c187 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4158,8 +4158,9 @@ dependencies = [ [[package]] name = "tokio-tar" -version = "0.2.0" -source = "git+https://github.com/vorot93/tokio-tar#cda9a198530bc730692507b4623696f4f0dd2a76" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a50188549787c32c1c3d9c8c71ad7e003ccf2f102489c5a96e385c84760477f4" dependencies = [ "filetime", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 65644bb1..56e4fe63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,2 @@ [workspace] members = [ "monero-harness", "monero-rpc", "swap", "monero-wallet" ] - -[patch.crates-io] -tokio-tar = { git = "https://github.com/vorot93/tokio-tar" } diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 71f425d1..00eb0d99 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -67,7 +67,7 @@ uuid = { version = "0.8", features = [ "serde", "v4" ] } void = "1" [target.'cfg(not(windows))'.dependencies] -tokio-tar = "0.2" +tokio-tar = "0.3" [target.'cfg(windows)'.dependencies] zip = "0.5"