libs update, add makefile for musl build

master
Ondřej Hruška 2 weeks ago
parent ebd1ff8848
commit 6a57a7c572
  1. 965
      Cargo.lock
  2. 2
      Cargo.toml
  3. 7
      Makefile

965
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -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"

@ -0,0 +1,7 @@
.PHONY: build build_musl
build:
cargo build --release
build_musl:
cross build --target x86_64-unknown-linux-musl --release
Loading…
Cancel
Save