Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From sigq-0.13.5 To trunk
2024-10-02
| ||
16:29 | Crate maintenance. Leaf check-in: 7bf56ea202 user: jan tags: trunk | |
2024-09-09
| ||
23:17 | Do not publish bacon.toml. check-in: 718a7a76ce user: jan tags: trunk | |
23:14 | Release maintenance. check-in: a2b2d5e4e4 user: jan tags: sigq-0.13.5, trunk | |
23:07 | Support 'managed' pop operations, which return queue elements inside a wrapper that must explicitly be marked as handled, or it will returtn the element to the queue on Drop. check-in: cb0b1b5bbc user: jan tags: trunk | |
Changes to Cargo.toml.
︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | repository = "https://repos.qrnch.tech/pub/sigq" description = "Queue that signals waiting consumers about node availability" exclude = [ ".fossil-settings", ".efiles", ".fslckout", "www", "rustfmt.toml" ] rust-version = "1.64" [features] default = ["inline-more"] inline-more = [] [dependencies] | > | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | repository = "https://repos.qrnch.tech/pub/sigq" description = "Queue that signals waiting consumers about node availability" exclude = [ ".fossil-settings", ".efiles", ".fslckout", "www", "bacon.toml", "rustfmt.toml" ] rust-version = "1.64" [features] default = ["inline-more"] inline-more = [] [dependencies] indexmap = { version = "2.6.0" } parking_lot = { version = "0.12.3" } [package.metadata.docs.rs] rustdoc-args = ["--generate-link-to-definition"] |