Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From killswitch-0.4.1 To killswitch-0.4.2
2024-09-19
| ||
10:25 | Happy pedantic clippy. check-in: cfdf1b6ecc user: jan tags: trunk | |
2024-04-07
| ||
00:03 | Add ability to mark a KillSwitch to trigger-on-drop, and begin working on support for passing a value along with a trigger (and it should be possible to return it when finalizing a KillSwitch). check-in: 04a927872d user: jan tags: trig-val-and-drop | |
2023-09-17
| ||
10:26 | Release maintenance. check-in: e0fdaa80c5 user: jan tags: killswitch-0.4.2, trunk | |
10:23 | Add the ability to reset a triggered kill switch. Add changelog. check-in: 5e3b67e904 user: jan tags: trunk | |
2023-09-16
| ||
20:00 | Documentation updates. check-in: c86094cf47 user: jan tags: trunk | |
2023-09-06
| ||
04:40 | Rearrange excluded files/directories. check-in: 742608f38e user: jan tags: killswitch-0.4.1, trunk | |
03:12 | Code normalization. check-in: 4ca07b05fb user: jan tags: trunk | |
Changes to .efiles.
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 | + + | Cargo.toml www/index.md www/changelog.md src/lib.rs src/pair.rs src/pair/killtrig.rs src/pair/killwait.rs examples/tokselect.rs |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | [package] name = "killswitch" |
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + | [dependencies] parking_lot = { version = "0.12.1" } [dev-dependencies] tokio = { version = "1.32.0", features = [ "macros", "rt-multi-thread", "time" ] } tokio-test = { version = "0.4.3" } tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.17" } [package.metadata.docs.rs] rustdoc-args = ["--generate-link-to-definition"] |
Changes to src/lib.rs.
|
Added www/changelog.md.
|
Changes to www/index.md.
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + + + + + + + + + + + + + + | # killswitch The killswitch is a special-purpose object for signalling multiple tasks simultaneously that they should self-terminate. ## Change log The details of changes can always be found in the timeline, but for a high-level view of changes between released versions there's a manually maintained [Change Log](./changelog.md). ## Project Status _killswitch_ is in _maintenance mode_; it is feature-complete with regards to its initial goal, but will receive bugfixes and improvements to implementation/documentation. |