From 777cff9b84582459930ca21212a469b809956a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Sun, 22 Oct 2023 11:03:15 +0200 Subject: [PATCH] Bump version v7.1.1 Former-commit-id: 64a65bb0f34ef00a59877deef720f2e52ff98d67 [formerly 8859e43218d64d61e22ea7eeb60e7f32ba3231ae] [formerly eab81c083843978e8273a08a02488aa559e6a445 [formerly 8d367abe27c3fed4f7603c35353e13c883f3cd50]] Former-commit-id: fa928268985d75444305383fef82ae62c7073eee [formerly 9f7652c1011ddbcbc5a4a3ce397b89a43696819b] Former-commit-id: a58ac2fd9cfdebf30bec51fccbaccd686c136048 Former-commit-id: 9b81f0c3da845f54967f903036917d80d316e67c Former-commit-id: 991906062ed95cbb2240d5f355402cf882b5f732 Former-commit-id: 99f0b1ad6e74c02f321bc2d0cb2800085c4dfac6 [formerly 9b7114d9820e76a93dd2fc24f31a8d4f8470b019] Former-commit-id: fabeecc704129089cece257d687a3e45683615ac --- Cargo.lock | 2 +- Cargo.toml | 2 +- Cargo.tomle | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 Cargo.tomle diff --git a/Cargo.lock b/Cargo.lock index 1fc5b29..7220fe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1523,7 +1523,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "wstunnel" -version = "7.1.0" +version = "7.1.1" dependencies = [ "ahash", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index f0471c1..230f138 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wstunnel" -version = "7.1.0" +version = "7.1.1" edition = "2021" repository = "https://github.com/erebe/wstunnel.git" diff --git a/Cargo.tomle b/Cargo.tomle new file mode 100644 index 0000000..f0471c1 --- /dev/null +++ b/Cargo.tomle @@ -0,0 +1,47 @@ +[package] +name = "wstunnel" +version = "7.1.0" +edition = "2021" +repository = "https://github.com/erebe/wstunnel.git" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "4.4.6", features = ["derive"]} +url = "2.4.1" +anyhow = "1.0.75" + +hyper = { version = "0.14.27", features = ["client", "runtime"] } +#fastwebsockets = { version = "0.4.4", features = ["upgrade"]} +fastwebsockets = { git = "https://github.com/mmastrac/fastwebsockets", branch = "split", features = ["upgrade", "simd"]} +libc = { version = "0.2.149", features = []} +once_cell = { version = "1.18.0", features = [] } +ahash = { version = "0.8.3", features = []} +pin-project = "1" +scopeguard = "1.2.0" +uuid = { version = "1.5.0", features = ["v7", "serde"] } +jsonwebtoken = { version = "9.0.0", default-features = false } +rustls-pemfile = { version = "1.0.3", features = [] } + +rustls-native-certs = { version = "0.6.3", features = [] } +tokio = { version = "1.33.0", features = ["full"] } +tokio-rustls = { version = "0.24.1", features = ["tls12", "dangerous_configuration", "early-data"] } +tokio-stream = { version = "0.1.14", features = ["net"] } +fast-socks5 = { version = "0.9.1", features = [] } +futures-util = { version = "0.3.28" } + +tracing = { version = "0.1.40", features = ["log"] } +tracing-subscriber = { version = "0.3.17", features = ["env-filter", "fmt", "local-time"] } +base64 = "0.21.4" +serde = { version = "1.0.189", features = ["derive"] } +log = "0.4.20" + +[target.'cfg(target_family = "unix")'.dependencies] +tokio-fd = "0.3.0" + + +[profile.release] +lto = "fat" +panic = "abort" +codegen-units = 1 +opt-level = 3