fix: remove openssl dependency
CI / Clippy (push) Failing after 5m27s
CI / Check (push) Failing after 6m36s
CI / Format (push) Failing after 51s
CI / Test (push) Failing after 6m41s

This commit is contained in:
Guillaume GRABÉ
2026-06-08 21:24:35 +02:00
parent 957199270c
commit 3e2b361cf6
5 changed files with 104 additions and 216 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ path = "src/lib.rs"
charybdis = { path = "../.." }
anyhow = "1.0"
async-trait = "0.1"
reqwest = { version = "0.12", features = ["json"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
+1 -1
View File
@@ -11,7 +11,7 @@ path = "src/lib.rs"
charybdis = { path = "../.." }
anyhow = "1.0"
async-trait = "0.1"
reqwest = { version = "0.12", features = ["json"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
+1 -1
View File
@@ -11,7 +11,7 @@ path = "src/lib.rs"
charybdis = { path = "../.." }
anyhow = "1.0"
async-trait = "0.1"
reqwest = { version = "0.12", features = ["json"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"