8573
8573
Trying to run `cargo tree`, I get this error message: ``` error: Found argument '--filter-platform' which wasn't expected, or isn't valid in this context USAGE: cargo metadata --format-version For more...
While looking into how I could implement reconnection after ping-timeout in `irc-bot`, I hit this question. Suppose that— - several `IrcClient`s are cloned; - their clones are registered with an...
Implement two things that were tracked in TODO comments, although only one appears to be in live code: using `core::mem::take` rather than a reimplementation of it when Rust 1.40 is...
In the spirit of #73, how does Combine compare to [LALRPOP](https://github.com/lalrpop/lalrpop)? ([I figure this may be easier than #73. :-) ](https://github.com/lalrpop/lalrpop/graphs/contributors))
It seems that, in 2019, in , , and , there was some interest in merging `codespan` into @rust-lang's `annotate-snippets`, but those conversations have lain open without new comments for...
https://github.com/servo/rust-smallvec/pull/175
I imagine that eventually I would want to embed a scripting language, for defining more complex bot features in hot-reloadable code. I like the sound of .
The advice at , which concerns specifically IRC bots that fetch Web pages' titles, may be relevant even at the bot framework level. In particular, the advice regarding CTCP messages...
Consider performance recommendations, eventually. Pascal Hertleif links to some resources in .
In , @ctm wrote— > I've only been playing with irc-bot for about a day. I've found it easy to use, although I haven't yet figured out how to make...