libs update, add makefile for musl build

This commit is contained in:
2025-12-05 18:24:55 +01:00
parent ebd1ff8848
commit 6a57a7c572
3 changed files with 320 additions and 664 deletions
Generated
+312 -663
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -21,7 +21,7 @@ indexmap = { version = "2.11", features = ["serde"] }
inquire = { version = "0.9", features = ["editor"] }
# For integrations
reqwest = { version = "0.12", features = ["rustls-tls", "blocking"] } #, optional = true
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] } #, optional = true
json_dotpath = "1.1.0"
dotenv = "0.15.0"
+7
View File
@@ -0,0 +1,7 @@
.PHONY: build build_musl
build:
cargo build --release
build_musl:
cross build --target x86_64-unknown-linux-musl --release