Depends & update

This commit is contained in:
PurpleCow 2025-01-07 19:04:58 +01:00
parent 6de9665063
commit 9d255103fe
3 changed files with 637 additions and 98 deletions

View File

@ -34,7 +34,7 @@ pipeline:
commands:
- dpkg --add-architecture armel
- apt-get update
- apt-get install -y crossbuild-essential-armel libdbus-1-dev:armel --no-install-recommends
- apt-get install -y crossbuild-essential-armel libdbus-1-dev:armel libsystemd0:armel --no-install-recommends
- rustup target add arm-unknown-linux-gnueabi
- PKG_CONFIG=arm-linux-gnueabi-pkg-config CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABI_LINKER=arm-linux-gnueabi-gcc cargo build --release --target arm-unknown-linux-gnueabi
- mv target/arm-unknown-linux-gnueabi/release/alma alma-arm

721
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -5,16 +5,16 @@ authors = ["Roey Darwish Dror, PurpleCow"]
edition = "2021"
[dependencies]
which = "4.4"
which = "7.0"
log = "0.4"
structopt = "0.3"
tempfile = "3"
serde = { version = "1", features = ["derive"] }
toml = "0.7"
byte-unit = "4.0"
nix = "0.26"
env_logger = "0.10"
toml = "0.8"
byte-unit = "5.1"
nix = "0.29"
env_logger = "0.11"
pretty_env_logger = "0.5"
dialoguer = "0.10"
dialoguer = "0.11"
console = "0.15"
anyhow = "1"