update dependencies

This commit is contained in:
Robin Appelman 2024-04-08 19:27:10 +02:00
commit c269a90332
5 changed files with 541 additions and 490 deletions

989
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -6,32 +6,32 @@ edition = "2021"
rust-version = "1.70.0"
[dependencies]
color-eyre = "0.6.2"
warp = "0.3.6"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
ctrlc = { version = "3.4.2", features = ["termination"] }
color-eyre = "0.6.3"
warp = "0.3.7"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
ctrlc = { version = "3.4.4", features = ["termination"] }
dotenvy = "0.15.7"
regex = { version = "1.10.2", default-features = false, features = ["std"] }
regex = { version = "1.10.4", default-features = false, features = ["std"] }
once_cell = "1.19.0"
hostname = "0.3.1"
libc = "0.2.151"
ahash = "0.8.7"
bollard = "0.15.0"
hostname = "0.4.0"
libc = "0.2.153"
ahash = "0.8.11"
bollard = "0.16.1"
futures-util = "0.3.30"
libmdns = "0.7.5"
libmdns = "0.8.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
nvml-wrapper = "0.9.0"
if-addrs = "0.11.0"
nvml-wrapper = "0.10.0"
if-addrs = "0.12.0"
sysconf = "0.3.4"
thiserror = "1.0.56"
clap = { version = "4.4.13", features = ["derive"] }
thiserror = "1.0.58"
clap = { version = "4.4.18", features = ["derive"] }
[target.'cfg(windows)'.dependencies]
serde = { version = "1.0.195", features = ["derive"] }
sysinfo = { version = "0.30.5" }
serde = { version = "1.0.197", features = ["derive"] }
sysinfo = { version = "0.30.8" }
winapi = { version = "0.3.9", features = ["sysinfoapi", "processthreadsapi", "powerbase", "minwindef", "winnt", "winbase", "winerror", "impl-default"] }
wmi = { version = "0.13.1" }
wmi = { version = "0.13.3" }
winreg = { version = "0.52.0", features = ["serialization-serde"] }
os-thread-local = "0.1.3"

24
flake.lock generated
View file

@ -10,11 +10,11 @@
]
},
"locked": {
"lastModified": 1689107909,
"narHash": "sha256-fb+zxf7AWesECHx1foXOM3NcKHLrdeXzGb6s2AhT6pE=",
"lastModified": 1705943642,
"narHash": "sha256-M/n8k0Ato/WGmNJjtIUQGoooVBXL1ahSveiCK772Dk8=",
"owner": "icewind1991",
"repo": "cross-naersk",
"rev": "51de54599de569e6faa2ee33dd659c5c028d9911",
"rev": "db45d5a45b69d7d246bc748a54cd3cbbd9c47e74",
"type": "github"
},
"original": {
@ -45,11 +45,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1704420045,
"narHash": "sha256-C36QmoJd5tdQ5R9MC1jM7fBkZW9zBUqbUCsgwS6j4QU=",
"lastModified": 1712437997,
"narHash": "sha256-g0whLLwRvgO2FsyhY8fNk+TWenS3jg5UdlWL4uqgFeo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c1be43e8e837b8dbee2b3665a007e761680f0c3d",
"rev": "e38d7cb66ea4f7a0eb6681920615dfcc30fc2920",
"type": "github"
},
"original": {
@ -77,11 +77,11 @@
]
},
"locked": {
"lastModified": 1704507282,
"narHash": "sha256-PDfS8fj40mm2QWpbd/aiocgwcI/WHzqLKERRJkoEvXU=",
"lastModified": 1712542394,
"narHash": "sha256-UZebDBECRSrJqw4K+LxZ6qFdYnScu6q1XCwqtsu1cas=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "a127cccf7943beae944953963ba118d643299c3b",
"rev": "ece8bdb3c3b58def25f204b9a1261dee55d7c9c0",
"type": "github"
},
"original": {
@ -110,11 +110,11 @@
"systems": "systems"
},
"locked": {
"lastModified": 1701680307,
"narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {

View file

@ -110,6 +110,7 @@
toolchain
bacon
cargo-msrv
cargo-edit
];
};
})

View file

@ -16,6 +16,7 @@ use warp::reject::Reject;
use warp::{Filter, Rejection};
#[derive(Debug)]
#[allow(dead_code)]
struct ReportRejection(Report);
impl From<Report> for ReportRejection {