From 1af023d689a2b961f25bda33b63c524a92e92bd3 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 10 Jul 2023 21:17:48 -0700 Subject: [PATCH] no iouring for now --- Cargo.lock | 31 ------------------------------- web3_proxy/Cargo.toml | 1 - 2 files changed, 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e2209f95..d3cd223e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3018,16 +3018,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "io-uring" -version = "0.5.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd1e1a01cfb924fd8c5c43b6827965db394f5a3a16c599ce03452266e1cf984c" -dependencies = [ - "bitflags 1.3.2", - "libc", -] - [[package]] name = "ipconfig" version = "0.3.2" @@ -5072,12 +5062,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "scoped-tls" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" - [[package]] name = "scopeguard" version = "1.1.0" @@ -6420,20 +6404,6 @@ dependencies = [ "webpki-roots 0.23.1", ] -[[package]] -name = "tokio-uring" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d5e02bb137e030b3a547c65a3bd2f1836d66a97369fdcc69034002b10e155ef" -dependencies = [ - "io-uring", - "libc", - "scoped-tls", - "slab", - "socket2 0.4.9", - "tokio", -] - [[package]] name = "tokio-util" version = "0.7.8" @@ -7151,7 +7121,6 @@ dependencies = [ "tokio", "tokio-console", "tokio-stream", - "tokio-uring", "toml 0.7.6", "tower", "tower-http", diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 5f67daab..d5cbecd1 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -92,7 +92,6 @@ time_03 = { package = "time", version = "0.3" } tokio = { version = "1.29.1", features = ["full", "tracing"] } tokio-console = { version = "0.1.9", optional = true } tokio-stream = { version = "0.1.14", features = ["sync"] } -tokio-uring = { version = "0.4.0", optional = true } toml = "0.7.6" tower = { version = "0.4.13", features = ["tracing"] } tower-http = { version = "0.4.1", features = ["cors", "sensitive-headers", "trace"] }