mirror of
https://codeberg.org/spire/dispenser.git
synced 2026-06-03 10:04:07 +02:00
update deps
This commit is contained in:
parent
f552f9c6cf
commit
f93a8229e2
3 changed files with 924 additions and 481 deletions
1404
Cargo.lock
generated
1404
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
34
Cargo.toml
34
Cargo.toml
|
|
@ -5,24 +5,24 @@ authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1.77"
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4.31", features = ["serde"] }
|
||||||
thiserror = "1"
|
thiserror = "1.0.56"
|
||||||
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
reqwest = { version = "0.11.23", default-features = false, features = ["json", "rustls-tls"] }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0.195", features = ["derive"] }
|
||||||
toml = "0.5"
|
toml = "0.8.8"
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
|
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "signal"] }
|
||||||
camino = "1"
|
camino = "1.1.6"
|
||||||
petname = "1"
|
petname = "1.1.3"
|
||||||
thrussh = "0.33"
|
thrussh = "0.35.1"
|
||||||
thrussh-keys = "0.21"
|
thrussh-keys = "0.22.1"
|
||||||
futures-util = "0.3"
|
futures-util = "0.3.30"
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.5.0"
|
||||||
cron = "0.11.0"
|
cron = "0.12.0"
|
||||||
rcon = { version = "0.6.0", features = ["rt-tokio"] }
|
rcon = { version = "0.6.0", features = ["rt-tokio"] }
|
||||||
tracing = "0.1.33"
|
tracing = "0.1.40"
|
||||||
tracing-subscriber = "0.3.11"
|
tracing-subscriber = "0.3.18"
|
||||||
clap = { version = "3.1.8", features = ["derive"] }
|
clap = { version = "4.4.16", features = ["derive"] }
|
||||||
main_error = "0.1.2"
|
main_error = "0.1.2"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
|
|
|
||||||
11
flake.nix
11
flake.nix
|
|
@ -39,6 +39,10 @@
|
||||||
nearskOpt = {
|
nearskOpt = {
|
||||||
pname = "dispenser";
|
pname = "dispenser";
|
||||||
root = src;
|
root = src;
|
||||||
|
nativeBuildInputs = with pkgs; [
|
||||||
|
libsodium
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
};
|
};
|
||||||
in rec {
|
in rec {
|
||||||
packages =
|
packages =
|
||||||
|
|
@ -60,7 +64,12 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
nativeBuildInputs = with pkgs; [rust-bin.stable.latest.default bacon skopeo];
|
nativeBuildInputs = with pkgs; [
|
||||||
|
rust-bin.stable.latest.default
|
||||||
|
bacon
|
||||||
|
skopeo
|
||||||
|
cargo-edit
|
||||||
|
] ++ nearskOpt.nativeBuildInputs;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
// {
|
// {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue