Skip to content

Commit

Permalink
not use openssl;
Browse files Browse the repository at this point in the history
  • Loading branch information
mycrl committed Jun 14, 2024
1 parent 3cede04 commit 71409ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
async-trait = "0.1"
axum = "0.7.5"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "http2", "gzip"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1", features = ["net"] }
Expand Down
2 changes: 1 addition & 1 deletion turn-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ clap = { version = "4", features = ["derive"] }
log = "0.4"
mimalloc = { version = "*", default-features = false }
num_cpus = "1.15"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "http2", "gzip"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.117"
stun = { path = "../stun", version = "1" }
Expand Down

0 comments on commit 71409ca

Please sign in to comment.