Cosmic
Cosmic
This pull request updates `error-chain`, `hex`, and `reqwest` to their most recently release version while dropping `serde_derive` and `url_serde` by using features to expose the same functionality on the base...
When running `cargo doc` I noticed some warnings about bare urls that aren't actually treated as hyperlinks. This PR just switches them to automatic links for ease of use when...
It looks like this crate has fallen out of maintenance for the past couple of years leading to [`slack-hook2`](https://lib.rs/crates/slack-hook2) and [`slack-hook3`](https://lib.rs/crates/slack-hook3) which both mention in their README's that they are...
Since the vast majority of the strings in `Data` are reasonably small it makes them a good target for small string optimization. I went with the [`smartstring`](https://lib.rs/crates/smartstring) crate since it...
Not sure if it's outside the scope of this website, but there are some useful external tools like - [`cargo-nextest`](https://lib.rs/crates/cargo-nextest) - [\[website\]](https://nexte.st) - [`cross`](https://lib.rs/crates/cross)
This just updates `quick-error` to version 2. This did involve switching `cause` over to `source` and removing `description` since both were deprecated since rust 1.33.0 and 1.42.0 respectively.
Had a lot of ideas floating around, so figured it would be good to open an issue that covers all of them **Existing issues / papercuts:** 1. `SyntectAdapter` panics when...
Fixes #246 Changes the syntect plugin to split off any text following a comma from the language tag to match what is supported by rustdoc and GitHub. This now accepts...
Wanted to give @chmln and others a notice that I'm stepping back from maintaining this project There's nothing specific to this project that's making me step back. I simply don't...
Currently our support for terminal coloring is pretty spotty. Ideally we would - [ ] Migrate away from `ansi_term` since it's been unmaintained for quite a while - [ ]...