Remove openssl from some packages' deps

This commit is contained in:
bitfl0wer 2024-07-10 17:31:04 +02:00
parent 743f106ec6
commit 215e576e90
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
2 changed files with 388 additions and 366 deletions

737
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -28,13 +28,17 @@ serde_json = { version = "1.0.111", features = ["raw_value"] }
serde-aux = "4.3.1"
serde_with = "3.4.0"
serde_repr = "0.1.18"
reqwest = { features = ["multipart", "json"], version = "0.11.23" }
reqwest = { features = [
"multipart",
"json",
"rustls-tls-native-roots",
], version = "0.11.27" }
url = "2.5.0"
chrono = { version = "0.4.31", features = ["serde"] }
regex = "1.10.2"
custom_error = "1.9.2"
futures-util = "0.3.30"
http = "0.2.11"
http = "0.2.12"
base64 = "0.21.7"
bitflags = { version = "2.4.1", features = ["serde"] }
lazy_static = "1.4.0"
@ -53,7 +57,11 @@ sqlx = { version = "0.7.3", features = [
"runtime-tokio-native-tls",
"any",
], optional = true }
discortp = { version = "0.5.0", optional = true, features = ["rtp", "discord", "demux"] }
discortp = { version = "0.5.0", optional = true, features = [
"rtp",
"discord",
"demux",
] }
crypto_secretbox = { version = "0.1.1", optional = true }
rand = "0.8.5"
flate2 = { version = "1.0.30", optional = true }
@ -65,7 +73,6 @@ tokio-tungstenite = { version = "0.20.1", features = [
"rustls-tls-native-roots",
"rustls-native-certs",
] }
native-tls = "0.2.11"
hostname = "0.3.1"
getrandom = { version = "0.2.12" }