Skip to content

Commit

Permalink
Update tls-api and thiserror (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazerzen authored Nov 25, 2024
1 parent b38fb4a commit e27f385
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions edgedb-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ readme = "README.md"
rust-version.workspace = true

[dependencies]
edgedb-protocol = { path = "../edgedb-protocol", version = "0.6.0", features = ["with-serde"] }
edgedb-protocol = { path = "../edgedb-protocol", version = "0.6.0", features = [
"with-serde",
] }
edgedb-errors = { path = "../edgedb-errors", version = "0.4.1" }
edgedb-derive = { path = "../edgedb-derive", version = "0.5.1", optional = true }
tokio = { version = "1.15", features = ["net", "time", "sync", "macros"] }
Expand All @@ -24,19 +26,13 @@ base16ct = { version = "0.2.0", features = ["alloc"] }
log = "0.4.8"
rand = "0.8"
url = "2.1.1"
tls-api = { package = "tls-api-2", version = "0.11.0", default-features = false, features = [
"runtime-tokio",
] }
tls-api-not-tls = { package = "tls-api-not-tls-2", version = "0.11.0", default-features = false, features = [
"runtime-tokio",
] }
tls-api-rustls = { package = "tls-api-rustls-2", version = "0.11.0", default-features = false, features = [
"runtime-tokio",
] }
tls-api = { version = "0.12.0" }
tls-api-not-tls = { version = "0.12.1" }
tls-api-rustls = { version = "0.12.1" }
rustls = { version = "0.23.5", default-features = false, features = [
"ring",
] } # keep in sync with tls-api
rustls-native-certs = "0.7.0"
rustls-native-certs = "0.8.1"
rustls-pemfile = "2.1.2"
webpki = { package = "rustls-webpki", version = "0.102.2", features = [
"std",
Expand All @@ -58,7 +54,7 @@ command-fds = "0.3.0"
[dev-dependencies]
shutdown_hooks = "0.1.0"
env_logger = "0.11"
thiserror = "1.0.30"
thiserror = "2"
test-log = "0.2.8"
futures-util = "0.3.21"
miette = { version = "7.2.0", features = ["fancy"] }
Expand Down

0 comments on commit e27f385

Please sign in to comment.