Skip to content

Commit

Permalink
feat(dep): upgrade rustls to 0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Berrysoft committed Mar 2, 2024
1 parent c8599bb commit a13f0f6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion compio-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ compio-buf = { workspace = true }
compio-io = { workspace = true, features = ["compat"] }

native-tls = { version = "0.2.11", optional = true }
rustls = { version = "0.22.1", optional = true }
rustls = { version = "0.23.1", default-features = false, optional = true, features = [
"logging",
"std",
"tls12",
] }

[dev-dependencies]
compio-net = { workspace = true }
compio-runtime = { workspace = true }
compio-macros = { workspace = true }

rustls = { version = "0.23.1", default-features = false, features = ["ring"] }
rustls-native-certs = "0.7.0"

[features]
Expand Down

0 comments on commit a13f0f6

Please sign in to comment.