From f7e55f2b0bb55632a2f45f47512a7cb55378e609 Mon Sep 17 00:00:00 2001 From: EAimTY Date: Sat, 4 Mar 2023 19:44:56 +0900 Subject: [PATCH] import `tuic` & `tuic-quinn` from local --- tuic-client/Cargo.toml | 4 ++-- tuic-quinn/Cargo.toml | 2 +- tuic-server/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tuic-client/Cargo.toml b/tuic-client/Cargo.toml index 553493c..b1246b7 100644 --- a/tuic-client/Cargo.toml +++ b/tuic-client/Cargo.toml @@ -24,7 +24,7 @@ socks5-server = { version = "0.8.3", default-features = false } thiserror = { version = "1.0.38", default-features = false } tokio = { version = "1.25.0", default-features = false, features = ["io-util", "macros", "net", "parking_lot", "rt-multi-thread", "time"] } tokio-util = { version = "0.7.4", default-features = false, features = ["compat"] } -tuic = { version = "5.0.0-pre-alpha5", default-features = false } -tuic-quinn = { version = "0.1.0-pre-alpha1", default-features = false } +tuic = { path = "../tuic", default-features = false } +tuic-quinn = { path = "../tuic-quinn", default-features = false } uuid = { version = "1.3.0", default-features = false, features = ["serde", "std"] } webpki = { version = "0.22.0", default-features = false } diff --git a/tuic-quinn/Cargo.toml b/tuic-quinn/Cargo.toml index 9362786..01366a1 100644 --- a/tuic-quinn/Cargo.toml +++ b/tuic-quinn/Cargo.toml @@ -16,5 +16,5 @@ bytes = { version = "1.4.0", default-features = false, features = ["std"] } futures-util = { version = "0.3.26", default-features = false, features = ["io", "std"] } quinn = { version = "0.9.3", default-features = false, features = ["futures-io"] } thiserror = { version = "1.0.38", default-features = false } -tuic = { version = "5.0.0-pre-alpha6", default-features = false, features = ["async_marshal", "marshal", "model"] } +tuic = { path = "../tuic", default-features = false, features = ["async_marshal", "marshal", "model"] } uuid = { version = "1.3.0", default-features = false, features = ["std"] } diff --git a/tuic-server/Cargo.toml b/tuic-server/Cargo.toml index aae14b2..d87bec2 100644 --- a/tuic-server/Cargo.toml +++ b/tuic-server/Cargo.toml @@ -20,6 +20,6 @@ socket2 = { version = "0.4.7", default-features = false } thiserror = { version = "1.0.38", default-features = false } tokio = { version = "1.25.0", default-features = false, features = ["io-util", "macros", "net", "parking_lot", "rt-multi-thread", "time"] } tokio-util = { version = "0.7.4", default-features = false, features = ["compat"] } -tuic = { version = "5.0.0-pre-alpha6", default-features = false } -tuic-quinn = { version = "0.1.0-pre-alpha2", default-features = false } +tuic = { path = "../tuic", default-features = false } +tuic-quinn = { path = "../tuic-quinn", default-features = false } uuid = { version = "1.3.0", default-features = false, features = ["serde", "std"] }