Index: Cargo.toml ================================================================== --- Cargo.toml +++ Cargo.toml @@ -1,8 +1,8 @@ [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" Index: src/rt.rs ================================================================== --- src/rt.rs +++ src/rt.rs @@ -384,10 +384,11 @@ 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 } Index: www/changelog.md ================================================================== --- www/changelog.md +++ www/changelog.md @@ -6,10 +6,18 @@ ### Changed ### Removed +--- + +## [0.0.6] - 2023-11-10 + +### Changed + +- Bugfix: Attempted to use rocket without rocket feature. + --- ## [0.0.5] - 2023-11-03 ### Changed