rework the build system

- use rustls for reqwest, so we don't need to compile OpenSSL
- use better defaults for build arguments in Dockerfile
- add Continuous Integration workflow for master branch and it's pull requests
- add Release workflow for tags matching SemVer
- add release template for automatic release notes generation with GH CLI
- remove old and unused assets under .github
This commit is contained in:
Jonatan Czarniecki 2025-06-07 16:11:48 +02:00
parent 1c38c402b9
commit e21cbd1f63
No known key found for this signature in database
GPG key ID: 8B5FB251A803BDD0
13 changed files with 462 additions and 810 deletions

View file

@ -25,7 +25,7 @@ dashmap = { version = "6.0", features = ["serde"] }
faster-hex = "0.10"
uuid = { version = "1.11", features = ["serde"] }
base64 = "0.22"
reqwest = { version = "0.12", features = ["blocking", "json"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
dotenvy = "0.15"
semver = "1.0"
walkdir = "2.5"
@ -34,7 +34,6 @@ zip = "2.2"
notify = "8.0"
# Crypto
openssl = { version = "0.10", features = ["vendored"] }
ring = "0.17"
rand = "0.9"
@ -42,4 +41,4 @@ rand = "0.9"
axum = { version = "0.8", features = ["ws", "macros", "http2"] }
tower-http = { version = "0.6", features = ["trace"] }
tokio = { version = "1.41", features = ["full"] }
prometheus = { version = "0.13.4", features = ["process"] }
prometheus = { version = "0.13.4", features = ["process"] }