Skip to content

Commit

Permalink
switch to rustls
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Jul 16, 2024
1 parent f8ab80b commit f07b924
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 104 deletions.
101 changes: 3 additions & 98 deletions 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 warpgate-admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ russh-keys = { version = "0.44.0-beta.3" }
# russh-keys = { version = "0.23.0-beta.1", path = "../../russh/russh-keys" }
rust-embed = "8.3"
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"runtime-tokio-rustls",
"macros",
], default-features = false }
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion warpgate-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ rand = "0.8"
rand_chacha = "0.3"
rand_core = { version = "0.6", features = ["std"] }
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"runtime-tokio-rustls",
"macros",
], default-features = false }
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion warpgate-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rand = "0.8"
rand_chacha = "0.3"
rand_core = { version = "0.6", features = ["std"] }
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"runtime-tokio-rustls",
"macros",
], default-features = false }
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion warpgate-db-migrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "0.9.1"
async-std = { version = "^1.11", features = ["attributes"] }
chrono = { version = "0.4", default-features = false, features = ["serde"] }
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"runtime-tokio-rustls",
"macros",
"with-chrono",
"with-uuid",
Expand Down
5 changes: 4 additions & 1 deletion warpgate-protocol-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ poem = { version = "^1.3.50", features = [
"embed",
] }
poem-openapi = { version = "2.0", features = ["swagger-ui"] }
reqwest = { version = "0.11", features = ["rustls-tls-native-roots", "stream"] }
reqwest = { version = "0.11", features = [
"rustls-tls-native-roots",
"stream",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
tokio = { version = "1.20", features = ["tracing", "signal"] }
Expand Down
2 changes: 1 addition & 1 deletion warpgate-protocol-ssh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ russh = { version = "0.44.0-beta.3" }
russh-keys = { version = "0.44.0-beta.3" }
# russh-keys = { version = "0.23.0-beta.1", path = "../../russh/russh-keys" }
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"runtime-tokio-rustls",
], default-features = false }
thiserror = "1.0"
time = "0.3"
Expand Down

0 comments on commit f07b924

Please sign in to comment.