This commit is contained in:
Robin Appelman 2024-06-22 23:48:35 +02:00
commit a3e06893b6
4 changed files with 469 additions and 254 deletions

711
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -9,14 +9,14 @@ license = "MIT OR Apache-2.0"
ssh2 = "0.9.4"
dotenvy = "0.15.7"
main_error = "0.1.2"
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
warp = "0.3.6"
ctrlc = "3.4.2"
thiserror = "1.0.57"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
warp = "0.3.7"
ctrlc = "3.4.4"
thiserror = "1.0.61"
rumqttc = "0.24.0"
serde = { version = "1.0.197", features = ["derive"] }
toml = "0.8.10"
serde = { version = "1.0.203", features = ["derive"] }
toml = "0.8.14"
secretfile = { version = "0.1.0" }
clap = { version = "=4.4.18", features = ["derive"] }
clap = { version = "4.5.7", features = ["derive"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-subscriber = "0.3.18"

14
flake.lock generated
View file

@ -5,11 +5,11 @@
"systems": "systems"
},
"locked": {
"lastModified": 1705309234,
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
@ -20,16 +20,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1706956340,
"narHash": "sha256-g1hZv4OnW2UR6+OBWbeYB2kNnbq0W81wzZhOk/3yoXk=",
"lastModified": 1719092257,
"narHash": "sha256-nGoolnNxcIfP3rYA7U9Z/wjufVKzGEcQ2zRuKBEzN9k=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "7b9bd55d0f67ee214a8c9f3353ded09618ab51b2",
"rev": "df56ee013dc9cf5f1f614d119c006217f9bf3b54",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "release-23.11",
"ref": "release-24.05",
"type": "indirect"
}
},

View file

@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = "nixpkgs/release-23.11";
nixpkgs.url = "nixpkgs/release-24.05";
flake-utils.url = "github:numtide/flake-utils";
};