mirror of
https://github.com/shiroyashik/sculptor.git
synced 2025-12-06 04:51:13 +03:00
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:
parent
1c38c402b9
commit
e21cbd1f63
13 changed files with 462 additions and 810 deletions
|
|
@ -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"] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue