mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
bump dependencies
This commit is contained in:
parent
d12849d308
commit
ae918e2dd1
3 changed files with 311 additions and 604 deletions
899
Cargo.lock
generated
899
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
18
Cargo.toml
18
Cargo.toml
|
|
@ -11,28 +11,28 @@ description = "Easy setup and management of Nextcloud test instances using docke
|
||||||
bollard = "0.14.0"
|
bollard = "0.14.0"
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
camino = { version = "1.1.4", features = ["serde1"] }
|
camino = { version = "1.1.4", features = ["serde1"] }
|
||||||
tokio = { version = "1.28.0", features = ["fs", "macros", "signal"] }
|
tokio = { version = "1.29.1", features = ["fs", "macros", "signal"] }
|
||||||
parse-display = "0.8.0"
|
parse-display = "0.8.1"
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
termion = "2.0.1"
|
termion = "2.0.1"
|
||||||
opener = "0.6.1"
|
opener = "0.6.1"
|
||||||
toml = "0.7.3"
|
toml = "0.7.6"
|
||||||
directories-next = "2.0.0"
|
directories-next = "2.0.0"
|
||||||
serde = "1.0.160"
|
serde = "1.0.171"
|
||||||
petname = "1.1.3"
|
petname = "1.1.3"
|
||||||
reqwest = { version = "0.11.17", default-features = false }
|
reqwest = { version = "0.11.18", default-features = false }
|
||||||
tar = "0.4.38"
|
tar = "0.4.38"
|
||||||
flate2 = "1.0.26"
|
flate2 = "1.0.26"
|
||||||
async-trait = "0.1.68"
|
async-trait = "0.1.71"
|
||||||
enum_dispatch = "0.3.11"
|
enum_dispatch = "0.3.12"
|
||||||
miette = { version = "5.8.0", features = ["fancy"] }
|
miette = { version = "5.9.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.14", features = ["net"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
tracing-subscriber = "0.3.17"
|
tracing-subscriber = "0.3.17"
|
||||||
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.26"
|
hyper = "0.14.27"
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
git2 = { version = "0.17.2", default-features = false }
|
git2 = { version = "0.17.2", default-features = false }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -491,7 +491,7 @@ impl Cloud {
|
||||||
Some(filter) => cloud_id.contains(filter),
|
Some(filter) => cloud_id.contains(filter),
|
||||||
None => true,
|
None => true,
|
||||||
} {
|
} {
|
||||||
let mut entry = containers_by_id.entry(cloud_id.to_string()).or_default();
|
let entry = containers_by_id.entry(cloud_id.to_string()).or_default();
|
||||||
if labels.get("haze-type").map(String::as_str) == Some("cloud") {
|
if labels.get("haze-type").map(String::as_str) == Some("cloud") {
|
||||||
let info = docker.inspect_container(cloud_id, None).await.ok();
|
let info = docker.inspect_container(cloud_id, None).await.ok();
|
||||||
entry.0 = Some(container);
|
entry.0 = Some(container);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue