Skip to content

Commit

Permalink
Bump version v7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
erebe committed Oct 22, 2023
1 parent f3810b4 commit 8d367ab
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wstunnel"
version = "7.1.0"
version = "7.1.1"
edition = "2021"
repository = "https://github.com/erebe/wstunnel.git"

Expand Down
47 changes: 47 additions & 0 deletions Cargo.tomle
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8d367ab

Please sign in to comment.