Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From qsu-0.0.6 To qsu-0.0.7
2023-12-12
| ||
05:22 | Use apperr crate instead of using an in-tree implementation of AppErr. check-in: 49f2ff9578 user: jan tags: trunk | |
2023-12-11
| ||
11:35 | Release maintenance. check-in: a01d88982c user: jan tags: qsu-0.0.7, trunk | |
2023-12-09
| ||
11:38 | Update dependencies. Release maintenance. check-in: 13c503aedd user: jan tags: trunk | |
2023-11-19
| ||
01:12 | Rocket 0.5. check-in: 008bea9424 user: jan tags: trunk | |
2023-11-10
| ||
16:16 | Release maintenance. check-in: 8e11b8938e user: jan tags: qsu-0.0.6, trunk | |
16:15 | Change log. check-in: c53f83f699 user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | [package] name = "qsu" | | | 1 2 3 4 5 6 7 8 9 10 | [package] name = "qsu" version = "0.0.7" edition = "2021" license = "0BSD" categories = [ "asynchronous" ] keywords = [ "service", "systemd", "winsvc" ] repository = "https://repos.qrnch.tech/pub/qsu" description = "Service subsystem wrapper." rust-version = "1.56" |
︙ | ︙ | |||
28 29 30 31 32 33 34 | rt = [] tokio = ["rt", "tokio/macros", "tokio/rt-multi-thread", "tokio/signal"] wait-for-debugger = ["dep:dbgtools-win"] [dependencies] async-trait = { version = "0.1.74" } chrono = { version = "0.4.24" } | | | | | | | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | rt = [] tokio = ["rt", "tokio/macros", "tokio/rt-multi-thread", "tokio/signal"] wait-for-debugger = ["dep:dbgtools-win"] [dependencies] async-trait = { version = "0.1.74" } chrono = { version = "0.4.24" } 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.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", optional = true } sidoc = { version = "0.1.0", optional = true } 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.18" default-features = false features = ["env-filter", "time", "fmt", "ansi"] [target.'cfg(target_os = "linux")'.dependencies] sd-notify = { version = "0.4.1", optional = true } [target.'cfg(unix)'.dependencies] libc = { version = "0.2.149" } nix = { version = "0.27.1", features = ["pthread", "signal"] } [target.'cfg(windows)'.dependencies] 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.52.0", features = [ "Win32_Foundation", "Win32_System_Console" ] } winreg = { version = "0.52.0" } [dev-dependencies] clap = { version = "4.4.6", features = ["derive", "env", "wrap_help"] } tokio = { version = "1.33.0", features = ["time"] } [package.metadata.docs.rs] all-features = true |
︙ | ︙ |
Changes to www/changelog.md.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Change log ## [Unreleased] ### Added ### Changed ### Removed --- ## [0.0.6] - 2023-11-10 ### Changed - Bugfix: Attempted to use rocket without rocket feature. | > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Change log ## [Unreleased] ### Added ### 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 - Bugfix: Attempted to use rocket without rocket feature. |
︙ | ︙ |