Skip to content

Commit

Permalink
Bump version 0.2.16
Browse files Browse the repository at this point in the history
Explicitly use the ring crate
  • Loading branch information
ssrlive committed Mar 25, 2024
1 parent 3afdb22 commit b0de947
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "overtls"
version = "0.2.15"
version = "0.2.16"
edition = "2021"
license = "MIT"
description = "A simple proxy tunnel, minimalist tool for bypassing the GFW."
Expand Down Expand Up @@ -30,14 +30,23 @@ reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
] }
rustls = { version = "0.23", default-features = false, features = ["std"] }
rustls = { version = "0.23", default-features = false, features = [
"std",
"tls12",
"logging",
"ring",
] }
rustls-pemfile = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
socks5-impl = "0.5"
thiserror = "1.0"
tokio = { version = "1.36", features = ["full"] }
tokio-rustls = { version = "0.26", default-features = false }
tokio-rustls = { version = "0.26", default-features = false, features = [
"logging",
"tls12",
"ring",
] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
tokio-util = "0.7"
trust-dns-proto = "0.23"
Expand Down

0 comments on commit b0de947

Please sign in to comment.