1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 09:04:12 +02:00

bumb dependencies

This commit is contained in:
Robin Appelman 2024-03-27 16:42:46 +01:00
commit 85215acaf0
3 changed files with 701 additions and 494 deletions

1160
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[package] [package]
name = "haze" name = "haze"
version = "1.3.0" version = "1.5.0"
authors = ["Robin Appelman <robin@icewind.nl>"] authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018" edition = "2018"
repository = "https://github.com/icewind1991/haze" repository = "https://github.com/icewind1991/haze"
@ -8,33 +8,33 @@ license = "MIT"
description = "Easy setup and management of Nextcloud test instances using docker" description = "Easy setup and management of Nextcloud test instances using docker"
[dependencies] [dependencies]
bollard = "0.14.0" bollard = "0.16.1"
maplit = "1.0.2" maplit = "1.0.2"
camino = { version = "1.1.4", features = ["serde1"] } camino = { version = "1.1.6", features = ["serde1"] }
tokio = { version = "1.29.1", features = ["fs", "macros", "signal"] } tokio = { version = "1.36.0", features = ["fs", "macros", "signal", "rt-multi-thread"] }
parse-display = "0.8.1" parse-display = "0.9.0"
futures-util = "0.3.28" futures-util = "0.3.30"
termion = "2.0.1" termion = "3.0.0"
opener = "0.6.1" opener = "0.7.0"
toml = "0.7.6" toml = "0.8.12"
directories-next = "2.0.0" directories-next = "2.0.0"
serde = "1.0.171" serde = "1.0.197"
petname = "1.1.3" petname = "1.1.3"
reqwest = { version = "0.11.18", default-features = false } reqwest = { version = "0.12.2", default-features = false }
tar = "0.4.38" tar = "0.4.40"
flate2 = "1.0.26" flate2 = "1.0.28"
async-trait = "0.1.71" async-trait = "0.1.79"
enum_dispatch = "0.3.12" enum_dispatch = "0.3.12"
miette = { version = "5.9.0", features = ["fancy"] } miette = { version = "7.2.0", features = ["fancy"] }
shell-words = "1.1.0" shell-words = "1.1.0"
warp = "0.3" warp = "0.3"
tokio-stream = { version = "0.1.14", features = ["net"] } tokio-stream = { version = "0.1.15", features = ["net"] }
tracing = "0.1.37" tracing = "0.1.40"
tracing-subscriber = "0.3.17" tracing-subscriber = "0.3.18"
hyper-reverse-proxy = { version = "0.5.2-dev", git = "https://github.com/felipenoris/hyper-reverse-proxy" } hyper-reverse-proxy = { version = "0.5.2-dev", git = "https://github.com/felipenoris/hyper-reverse-proxy" }
hyper = "0.14.27" hyper = "0.14.28"
atty = "0.2.14" atty = "0.2.14"
git2 = { version = "0.17.2", default-features = false } git2 = { version = "0.18.3", default-features = false }
[profile.release] [profile.release]
lto = true lto = true

View file

@ -52,6 +52,7 @@
}; };
buildTarget = target: (cross-naersk'.buildPackage target) nearskOpt; buildTarget = target: (cross-naersk'.buildPackage target) nearskOpt;
hostNaersk = cross-naersk'.hostNaersk; hostNaersk = cross-naersk'.hostNaersk;
toolchain = pkgs.rust-bin.stable.latest.default;
in rec { in rec {
# `nix build` # `nix build`
packages = packages =
@ -75,7 +76,7 @@
devShells = { devShells = {
default = cross-naersk'.mkShell targets { default = cross-naersk'.mkShell targets {
nativeBuildInputs = with pkgs; [bacon cargo-edit cargo-outdated clippy]; nativeBuildInputs = with pkgs; [toolchain bacon cargo-edit cargo-outdated clippy];
}; };
}; };
} }