Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From qsu-0.7.0 To trunk
2024-11-18
| ||
02:27 | Use bin name. Leaf check-in: c581fba9b6 user: jan tags: trunk | |
01:38 | Dependency management. check-in: 79a3106d9e user: jan tags: trunk | |
01:20 | Add crate version to clap. check-in: 0bf34bcb4f user: jan tags: trunk | |
2024-10-17
| ||
14:57 | Release maintenance. check-in: bdeb55f63b user: jan tags: qsu-0.7.0, trunk | |
14:52 | Add missing bound. check-in: 150898a4e2 user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | [package] name = "qsu" |
︙ | |||
34 35 36 37 38 39 40 | 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 79 80 81 82 83 84 85 86 87 88 | - + - - + + - + - - + + - - + + | rt = [] tokio = ["rt", "tokio/macros", "tokio/rt-multi-thread", "tokio/signal"] wait-for-debugger = ["dep:dbgtools-win"] [dependencies] async-trait = { version = "0.1.83" } chrono = { version = "0.4.38" } |
︙ |
Changes to examples/argp/mod.rs.
| 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 28 29 30 31 32 33 34 35 | - + - + + + + + + + + + + + + + + + + + |
|
︙ |
Changes to src/argp.rs.
︙ | |||
249 250 251 252 253 254 255 256 257 258 259 260 261 262 | 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | + | Self { svcname } } } /// Used to differentiate between running without a subcommand, or the /// install/uninstall or run service subcommands. #[derive(Debug, PartialEq, Eq)] pub enum Cmd { /// The root `Command`. Root, /// The service registration/installation `Command`. Inst, |
︙ |
Changes to www/changelog.md.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | + + | # Change log ⚠️ indicates a breaking change. ## [Unreleased] [Details](/vdiff?from=qsu-0.7.0&to=trunk) ### Added - Derive `Debug`, `PartialEq` and `Eq` for `argp::Cmd`. ### Changed ### Removed --- |
︙ |