Replace openssl usage in gree

This commit is contained in:
Ethan O'Brien
2025-11-20 23:01:35 -06:00
parent 8da6938fb3
commit 1172b4bd11
3 changed files with 47 additions and 42 deletions

View File

@@ -5,8 +5,7 @@ edition = "2024"
[dependencies]
actix-web = { version = "4.10.2" }
rusqlite = { version = "0.35.0", features = ["bundled"] }
openssl = { version = "0.10", features = ["vendored"] }
rusqlite = { version = "0.37.0", features = ["bundled"] }
reqwest = { version = "0.12", features = ["blocking"] }
clap = { version = "4.5.37", features = ["derive"]}
base64 = "0.22.1"
@@ -16,12 +15,12 @@ lazy_static = "1.5.0"
chrono = "0.4.41"
hex = "0.4.3"
hmac = "0.12.1"
md5 = "0.7.0"
md5 = "0.8.0"
urlencoding = "2.1.3"
sha1 = "0.10.6"
substring = "1.4.5"
uuid = { version = "1.16.0", features = ["v7"] }
rsa = "0.9.8"
rsa = { version = "0.9.8", features = ["sha1"] }
mime = "0.3.17"
sha2 = "0.10.9"
include-flate-codegen = "0.3.0"
@@ -30,3 +29,4 @@ serde_json = "1.0.140"
serde = { version = "1.0.219", features = ["derive"] }
cbc = { version = "0.1.2", features = ["alloc"] }
aes = "0.8.4"
pem = "3.0.6"