Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From qsu-0.4.0 To qsu-0.4.1
2024-05-20
| ||
00:11 | Merge. check-in: 343bfcf196 user: jan tags: trunk | |
2024-05-19
| ||
20:15 | Start working on support specifying tracing filter. check-in: 322cec676c user: jan tags: tracing-filter | |
2024-05-18
| ||
22:19 | Release maintenance. check-in: f7bd4bc90c user: jan tags: qsu-0.4.1, trunk | |
22:02 | Metadata update; set to os category. check-in: f37a6b11c0 user: jan tags: trunk | |
2024-04-03
| ||
22:54 | Re-export log and tracing. check-in: 999a598d71 user: jan tags: trunk | |
2024-03-22
| ||
13:34 | Release maintenance. check-in: c90cbdbc41 user: jan tags: qsu-0.4.0, trunk | |
13:31 | Cleanup and docs. check-in: 1e925f55cf user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + - + | [package] name = "qsu" |
︙ | |||
32 33 34 35 36 37 38 | 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 79 80 81 82 83 84 85 86 87 88 | - - - + + + - + - + - - + + - + - + - - + + | rocket = ["rt", "dep:rocket", "tokio"] rt = [] tokio = ["rt", "tokio/macros", "tokio/rt-multi-thread", "tokio/signal"] wait-for-debugger = ["dep:dbgtools-win"] [dependencies] apperr = { version = "0.2.0" } |
︙ |
Changes to src/lib.rs.
︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | + + | #[cfg(feature = "tokio")] pub use tokio; #[cfg(feature = "rocket")] pub use rocket; pub use log; pub use tracing; /// Attempt to derive a default service name based on the executable's name. /// /// The idea is to get the current executable's file name and strip it's /// extension (if there is one). The file stem name is the default service /// name. On macos the name will be prefixed by `local.`. pub fn default_service_name() -> Option<String> { |
︙ |
Changes to www/changelog.md.
1 2 3 4 | 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 | - + + + + + + + + + + + + + + + | # Change log ## [Unreleased] |
︙ |