Mikhail Zabaluev
Mikhail Zabaluev
Explained in https://github.com/matthiaskrgr/cargo-cache/issues/76#issuecomment-629653999 (while advocating for a new feature).
Another motivation for this is release notifications. When a release is first created, then assets are uploaded to it, the release notification email lists only the repository source links. It...
@tayyab-anwar Thanks, I guess a workflow can use `hub` for this, no need for specialized actions.
Wondering if there could be a Rust feature of ranges for integer types, generally useful to automatically check value domain at runtime and possible optimization hints: ``` rust let ascii:...
@bgamari I think ranged types could provide a superset over bit width limited types. The range might as well be parameterized, if Rust allows expression parameters for types as your...
Pulling from a [forum post](https://internals.rust-lang.org/t/pre-rfc-cfg-syntax-for-size-and-alignment-of-ffi-types/2775/3?u=mzabaluev), the ideation to add a sub-specifier to `#[repr(C)]`: ``` rust #[repr(C; bitfields(foo: 2, bar: 1))] struct A { foo: c_uint, bar: c_uint } ``` As...
This may be useful to support `close` methods for I/O objects that need error reporting when being disposed of. See [a discussion thread](http://internals.rust-lang.org/t/issues-in-new-i-o/1658) on I/O issues.
This should be dedicated to equipping every tx with `ClientUpdate`. Sizing and gas issues should be tracked elsewhere: #2560 and #2422.
No opportunity to check this with a build of Gaia yet, but from the changes referenced above it looks as though the difference will be limited to the format of...
As cosmos-sdk has switched to [buf](https://buf.build/) for code generation, it would make sense to investigate usage of [protoc-gen-prost](https://crates.io/crates/protoc-gen-prost), as prost-build can no longer easily catch up to the details of...