chore: bump dependencies

main
Jef Roosens 2025-04-30 17:40:28 +02:00
parent 3ae19e2168
commit 6a8725489e
No known key found for this signature in database
GPG Key ID: 21FD3D77D56BAF49
5 changed files with 278 additions and 248 deletions

View File

@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased](https://git.rustybever.be/Chewing_Bever/alex/src/branch/dev)
## Fixed
### Fixed
* Fix bug where JSON metadata file can be corrupted if crash occurs while
writing (data is now written to a temporary file before atomically renaming)

512
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -10,13 +10,6 @@ version = "0.4.2"
authors = ["Jef Roosens"]
edition = "2021"
# [package]
# name = "alex"
# version = "0.4.1"
# description = "Wrapper around Minecraft server processes, designed to complement Docker image installations."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
chrono = { version = "0.4.26", features = ["serde"] }
serde = { version = "1.0.164", features = ["derive"] }

View File

@ -1,5 +1,6 @@
[package]
name = "alex"
description = "Wrapper around Minecraft server processes, designed to complement Docker image installations."
version.workspace = true
edition.workspace = true
@ -9,6 +10,6 @@ backup = { path = "../backup" }
chrono.workspace = true
serde.workspace = true
clap = { version = "4.3.1", features = ["derive", "env"] }
clap = { version = "4.5.37", features = ["derive", "env"] }
signal-hook = "0.3.15"
figment = { version = "0.10.10", features = ["env", "toml"] }

View File

@ -10,5 +10,5 @@ serde.workspace = true
# Used for creating tarballs for backups
tar = "0.4.38"
# Used to compress said tarballs using gzip
flate2 = "1.0.26"
flate2 = "1.1.1"
serde_json = "1.0.96"