refactor(rust): add support for vendored OpenSSL in CI configuration

This commit is contained in:
Félix MARQUET
2025-06-12 20:23:06 +02:00
parent 5caa2b56ce
commit b28f70b659
3 changed files with 13 additions and 5 deletions

View File

@@ -7,6 +7,9 @@ edition = "2021"
name = "github-ntfy"
path = "src/main.rs"
[features]
vendored-openssl = ["openssl/vendored"]
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
@@ -17,4 +20,5 @@ log = "0.4"
env_logger = "0.10"
dotenv = "0.15"
chrono = "0.4"
warp = "0.3"
warp = "0.3"
openssl = { version = "0.10", features = ["vendored"] }