specify dependencies versions and use rustls

This commit is contained in:
Suiranoil
2023-06-15 02:00:07 +03:00
parent ac4d42e578
commit 7e1aaa6cb6

View File

@@ -4,17 +4,17 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
tokio = { version = "*", features = ["full"] } tokio = { version = "1.28.2", features = ["full"] }
tracing = "*" tracing = "0.1.37"
serenity = {version = "*", default-features = false, features = ["rustls_backend", "client", "gateway", "model", "cache", "collector", "utils"] } serenity = {version = "0.11.5", default-features = false, features = ["rustls_backend", "client", "gateway", "model", "cache", "collector", "utils"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
sea-orm = { version = "*", features = ["sqlx-postgres", "runtime-tokio-native-tls", "macros"] } sea-orm = { version = "0.11.3", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
itertools = "*" itertools = "0.10.5"
shuttle-secrets = "*" shuttle-secrets = "0.18.0"
shuttle-serenity = "*" shuttle-serenity = "0.18.0"
shuttle-runtime = "*" shuttle-runtime = "0.18.0"
shuttle-shared-db = { version = "*", features = ["postgres"] } shuttle-shared-db = { version = "0.18.0", features = ["postgres-rustls"] }
rusttype = "*" rusttype = "0.9.3"
image = "*" image = "0.24.6"
imageproc = "*" imageproc = "0.23.0"