From 1af2235a23a9f9343c50e52e46ea2eaa9b694f6d Mon Sep 17 00:00:00 2001 From: Greedwolf DSS Date: Wed, 7 Aug 2024 01:44:32 +0800 Subject: [PATCH] fix: typo (#257) Co-authored-by: ruben --- h3-webtransport/Cargo.toml | 4 ++-- h3/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/h3-webtransport/Cargo.toml b/h3-webtransport/Cargo.toml index 16c6f44c..347ad945 100644 --- a/h3-webtransport/Cargo.toml +++ b/h3-webtransport/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" bytes = "1" futures-util = { version = "0.3", default-features = false } http = "1" -pin-project-lite = { version = "0.2", default_features = false } +pin-project-lite = { version = "0.2", default-features = false } tracing = "0.1.37" -tokio = { version = "1.28", default_features = false } +tokio = { version = "1.28", default-features = false } [dependencies.h3] version = "0.0.6" diff --git a/h3/Cargo.toml b/h3/Cargo.toml index 3de9cc48..6531585b 100644 --- a/h3/Cargo.toml +++ b/h3/Cargo.toml @@ -28,7 +28,7 @@ bytes = "1" futures-util = { version = "0.3", default-features = false, features = ["io"] } http = "1" tokio = { version = "1", features = ["sync"] } -pin-project-lite = { version = "0.2", default_features = false } +pin-project-lite = { version = "0.2", default-features = false } tracing = {version = "0.1.40", optional = true} fastrand = "2.0.1"