Index: Cargo.toml ================================================================== --- Cargo.toml +++ Cargo.toml @@ -1,8 +1,8 @@ [package] name = "qsu" -version = "0.0.6" +version = "0.0.7" edition = "2021" license = "0BSD" categories = [ "asynchronous" ] keywords = [ "service", "systemd", "winsvc" ] repository = "https://repos.qrnch.tech/pub/qsu" @@ -30,27 +30,27 @@ wait-for-debugger = ["dep:dbgtools-win"] [dependencies] async-trait = { version = "0.1.74" } chrono = { version = "0.4.24" } -clap = { version = "4.4.7", optional = true, features = [ +clap = { version = "4.4.11", optional = true, features = [ "derive", "env", "string", "wrap_help" ] } env_logger = { version = "0.10.0" } futures = { version = "0.3.29" } -itertools = { version = "0.11.0", optional = true } +itertools = { version = "0.12.0", optional = true } killswitch = { version = "0.4.2" } log = { version = "0.4.20" } parking_lot = { version = "0.12.1" } -rocket = { version = "0.5.0-rc.4", optional = true } +rocket = { version = "0.5.0", optional = true } sidoc = { version = "0.1.0", optional = true } -tokio = { version = "1.33.0", features = ["sync"] } +tokio = { version = "1.35.0", features = ["sync"] } time = { version = "0.3.20", features = ["macros"] } tracing = { version = "0.1.40" } [dependencies.tracing-subscriber] -version = "0.3.17" +version = "0.3.18" default-features = false features = ["env-filter", "time", "fmt", "ansi"] [target.'cfg(target_os = "linux")'.dependencies] sd-notify = { version = "0.4.1", optional = true } @@ -63,14 +63,14 @@ dbgtools-win = { version = "0.2.1", optional = true } eventlog = { version = "0.2.2" } registry = { version = "1.2.3" } scopeguard = { version = "1.2.0" } windows-service = { version = "0.6.0" } -windows-sys = { version = "0.48.0", features = [ +windows-sys = { version = "0.52.0", features = [ "Win32_Foundation", "Win32_System_Console" ] } -winreg = { version = "0.51.0" } +winreg = { version = "0.52.0" } [dev-dependencies] clap = { version = "4.4.6", features = ["derive", "env", "wrap_help"] } tokio = { version = "1.33.0", features = ["time"] } Index: www/changelog.md ================================================================== --- www/changelog.md +++ www/changelog.md @@ -6,10 +6,20 @@ ### Changed ### Removed +--- + +## [0.0.7] - 2023-12-09 + +### Changed + +- Use [rocket 0.5.0](https://rocket.rs/v0.5/news/2023-11-17-version-0.5/) + for Rocket server application runtime types +- Updated dependencies. + --- ## [0.0.6] - 2023-11-10 ### Changed