chore: bump dependencies
parent
3ae19e2168
commit
6a8725489e
|
@ -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)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -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"] }
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue