qsu

Check-in Differences
Login

Check-in Differences

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

Difference From qsu-0.0.5 To qsu-0.0.6

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
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

Changes to Cargo.toml.

1
2
3

4
5
6
7
8
9
10
1
2

3
4
5
6
7
8
9
10


-
+







[package]
name = "qsu"
version = "0.0.5"
version = "0.0.6"
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"

Changes to src/rt.rs.

382
383
384
385
386
387
388

389
390
391
392
393
394
395
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396







+







    let res = match st {
      SrvAppRt::Sync(handler) => {
        rttype::sync_main(handler, reporter, None, self.test_mode)
      }
      SrvAppRt::Tokio(rtbldr, handler) => {
        rttype::tokio_main(rtbldr, handler, reporter, None)
      }
      #[cfg(feature = "rocket")]
      SrvAppRt::Rocket(handler) => rttype::rocket_main(handler, reporter, None)
    };

    res
  }

  /// Run as a Windows service.

Changes to www/changelog.md.

1
2
3
4
5
6
7
8
9
10








11
12
13
14
15
16
17
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










+
+
+
+
+
+
+
+







# Change log

## [Unreleased]

### Added

### Changed

### Removed

---

## [0.0.6] - 2023-11-10

### Changed

- Bugfix: Attempted to use rocket without rocket feature.

---

## [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)