qsu

Check-in Differences
Login

Check-in Differences

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Difference From qsu-0.0.4 To qsu-0.0.5

2023-11-10
16:02
Don't try to use SrvAppRt::Rocket unless rocket feature is enabled. check-in: b8df944dc2 user: jan tags: trunk
2023-11-03
09:10
Use Rocket 0.5.0-rc.4. check-in: 074300f463 user: jan tags: qsu-0.0.5, trunk
2023-10-29
14:14
Fix doc ref. check-in: fb71171304 user: jan tags: qsu-0.0.4, trunk
14:11
Prepare 0.0.4. check-in: b7eb7c0490 user: jan tags: trunk

Changes to Cargo.toml.

1
2
3
4
5
6
7
8
9
10
[package]
name = "qsu"
version = "0.0.4"
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"


|







1
2
3
4
5
6
7
8
9
10
[package]
name = "qsu"
version = "0.0.5"
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"
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
] }
env_logger = { version = "0.10.0" }
futures = { version = "0.3.29" }
itertools = { version = "0.11.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.3", optional = true }
sidoc = { version = "0.1.0", optional = true }
tokio = { version = "1.33.0", features = ["sync"] }
time = { version = "0.3.20", features = ["macros"] }
tracing = { version = "0.1.40" }

[dependencies.tracing-subscriber]
version = "0.3.17"







|







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
] }
env_logger = { version = "0.10.0" }
futures = { version = "0.3.29" }
itertools = { version = "0.11.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 }
sidoc = { version = "0.1.0", optional = true }
tokio = { version = "1.33.0", features = ["sync"] }
time = { version = "0.3.20", features = ["macros"] }
tracing = { version = "0.1.40" }

[dependencies.tracing-subscriber]
version = "0.3.17"

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.4] - 2023-10-29

### Added

- Add the remaining `ArgsProc` callbacks in `ArgParser`.










>
>
>
>
>
>
>
>
>







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
# Change log

## [Unreleased]

### Added

### Changed

### Removed

---

## [0.0.5] - 2023-11-03

### Changed

- Use [rocket 0.5.0-rc.4](https://github.com/SergioBenitez/Rocket/blob/v0.5.0-rc.4/CHANGELOG.md#version-050-rc4-nov-1-2023)
  for Rocket server application runtime types

---

## [0.0.4] - 2023-10-29

### Added

- Add the remaining `ArgsProc` callbacks in `ArgParser`.