Cabbache

Results 8 issues of Cabbache

This makes it possible to specify the `color` property in event data. Fixes #67

```rust use petgraph::Graph; use petgraph::algo::find_negative_cycle; use petgraph::prelude::*; fn main() { let graph_with_neg_cycle = Graph::::from_edges(&[ (0, 1, -2.321928094887362), (1, 0, 2.321928094887362), (1, 2, 0.15200309344504995), (2, 1, -0.15200309344505006), (2, 3, -3.321928094887362), (3,...

I am using the raw api solution mentioned in https://github.com/Lonami/grammers/issues/222 to authenticate with QR code. The [docs](https://core.telegram.org/api/qr-login#confirming-importing-the-login-token) explain that if you receive [auth.loginTokenMigrateTo](https://core.telegram.org/constructor/auth.loginTokenMigrateTo) after scanning the QR code, then you...

With this output mode, `rg` will print a histogram of the number of matches within certain ranges of byte offsets. The width of the ranges is the bin size which...

This is a WIP based on the [poc](https://github.com/Genymobile/scrcpy/issues/3880#issuecomment-1595722119) by @yume-chan to add the feature requested in #3880