Cole Miller
Cole Miller
This PR adds the following trait to strum: ```rust pub trait EnumDiscriminants { type Discriminant; fn discriminants(&self) -> Self::Discriminants; } ``` It also causes `derive(EnumDiscriminants)` to generate an implementation of...
In [this post](https://adventures.michaelfbryan.com/posts/top-level-infrastructure/), lines like ```rust use aimc_hal::clock::{Clock, HasClock}; ``` are rendering as ```rust use aimc_hal:🕰:{Clock, HasClock}; ``` because `:clock:` is an emoji shortcode. I'm not sure what the best...
When creating a bridged veth tunnel, disable assignment of IPv6 link-local addresses on the host's end by writing 1 to /proc/sys/net/ipv6/conf/NAME/disable_ipv6, if it exists. Closes #1414 Signed-off-by: Cole Miller
It would be useful to have an interface for generating and parsing CDATA sections (``). These are used in SVG, e.g., to embed CSS rules inside a `` element ([example](https://www.w3.org/TR/SVG11/styling.html#StyleElementExample))....
I'm using this crate for interoperability in the public interface of one of my projects (https://github.com/sndjvu/workspace), and I'd love to see a 1.0 release. Are there any issues blocking that,...
We want to go through the docs on dqlite.io, update or remove any statements that are out of date, and add basic descriptions of interfaces -- like request types --...
@tomponline pointed out this error from LXD CI logs: https://jenkins.linuxcontainers.org/job/lxd-github-pull-test/8038/arch=arm64,backend=dir,compiler=golang-tip,section=cluster/console#console-section-0 Let's see if we can figure out what if anything is going wrong in dqlite here.
Sometimes we merge a PR with CI passing, and then get errors from Launchpad when it tries to build dqlite for a non-x86_64 architecture, especially 32-bit ARM. Typically the different...
Like the other barriers PR, this is prompted by looking into the consequences of https://github.com/canonical/raft/pull/302. When we're attempting a config change, we check that no other config change is already...
I'm opening this issue to track an integration test failure that I'm seeing on my local machine, but that evidently doesn't manifest on GHA or Launchpad. The test in question...