0000 1000 1101 0010
0000 1000 1101 0010
It would be helpful if published releases e.g. [0.6.5](https://github.com/matrix-org/dendrite/releases/tag/v0.6.5) included binaries for supported platforms, even if that's just linux/amd64 for now. I appreciate that you're publishing Docker images, but binaries...
This was previously reported in #17, where @tulir [responded](https://github.com/mautrix/go/issues/17#issuecomment-670569926) that > [crypto/olm] already is optional: the crypto module isn't imported from any other module crypto and crypto/olm are not modules...
The major version used in a git tag must be the same as the Go module version (defined in go.mod) at that revision. Otherwise, that rev isn't importable. ``` $...
My full node halted at height 5432450 claiming UPGRADE v11 NEEDED. But [v11.0.0](https://github.com/osmosis-labs/osmosis/releases/tag/v11.0.0) is currently tagged as a pre-release. How are node operators expected to discover and apply required upgrades...
The problem is demonstrated by the following [comment](https://github.com/prometheus/client_rust/blob/5d6ed2c104d47aed45fd65f4a41fff37177f60e0/src/encoding/text.rs#L20-L23) — ``` //! let expected = "# HELP my_counter This is my counter.\n".to_owned() + //! "# TYPE my_counter counter\n" + //! "my_counter_total...
I'm using makesure as a sort of ersatz Chef/Puppet/Ansible. Each Makesurefile defines how to install, start, and uninstall a versioned application on a host. Each of these high-level outcomes usually...
There is a relationship between OpenMetrics and Prometheus, but as far as I understand, they are not the same thing, and are definitely not fully compatible with each other. [lib.rs...
[Code like e.g. this](https://github.com/nox/serde_prometheus_labels/blob/50af58de45eb67a340283597f7236e19372e76e8/src/bridge.rs#L44-L48) suggests that this crate permits metric names containing spaces. The [data model asserts that](https://prometheus.io/docs/concepts/data_model/#metric-names-and-labels) > The metric name. . . may contain ASCII letters and digits,...