Results 72 comments of 8573

While I generally very much support supporting older Rust versions, I worry about how this would (not silently but) quietly give users insecure versions of programs, in the absence of...

I'm not familiar with the codebase either, but can you take the timezone as a field in the configuration? Then the consumer, before starting additional threads, can store the timezone...

To complement the suggestion of `string_cache`, I'd like to mention the small-string-optimized [`inlinable_string`](https://crates.io/crates/inlinable_string) — of course with each having its own pros and cons.

Stable smallvec's minimum supported Rust version (MSRV) is higher than irc-bot's MSRV, so updating to stable smallvec won't proceed until there comes a bump in irc-bot's MSRV. However, when that...

I don't know why Travis CI isn't reporting back, but this won't work (yet) because stable smallvec's minimum supported Rust version (MSRV) is higher than my MSRV, so updating smallvec...

I haven't been able to reproduce this problem; that is, it seems to me that the bot accepts the syntax in the default configuration file for channels to join. What...

Hello, @ctm — I've replied in #51.

I suspect I meant the "pedantic" lints, which the Clippy maintainers consider less unreasonable to enable than the "restriction" lints.

My latest work on this, using Servo's `gaol` library, is in the `wip/sandbox/gaol/1` branch. Patrick Walton says that I will need to use *both* of `gaol`'s `Sandbox` and `ChildSandbox` mechanisms...