Wesley Norris
Wesley Norris
Now that proc macros are stable, is there a way to utilize them for the instruction functions?
`serde_json` reports the error `Error("trailing characters", line: ..., column: ...)` whenever there are more elements in the JSON array than in the struct definition, which is very confusing as the...
Playground link: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=3f86d7648af09a1fb561b0c510fe0c9e I didn't notice any MSRV policy, but if you're not concerned with supporting older Rust versions, `ConstOid` can be removed and replaced with `const` associated functions on...
[Section 3](https://datatracker.ietf.org/doc/html/rfc3416#section-3) of the [Version 2 of the Protocol Operations for the Simple Network Management Protocol (SNMP)](https://datatracker.ietf.org/doc/html/rfc3416) RFC specifies `IpAddress` as the following: `IpAddress ::= [APPLICATION 0] IMPLICIT OCTET STRING...
Instead of directly reexporting types such as `BigInt as Integer` and `Bytes as OctetString`, I think it makes a lot more sense to newtype these and provide a more stable...
**rust-analyzer version**: rust-analyzer version: 0.0.0 (https://github.com/rust-lang/rust-analyzer/commit/5342f47f4276641ddb5f0a5e08fb307742d6cdc4 2022-07-09) **rustc version**: rustc 1.62.0 (a8314ef7d 2022-06-27) **relevant settings**: none ```rust macro_rules! derive { () => {}; } #[derive(Debug)] //
I've been developing an OS for RISC-V and use OpenSBI and was linked to this a while back and thought it would be an awesome way to have some friends...
Hi all, I ran into what seems to be an unsolvable issue combining `sqlx` and `tonic-build` generated trait methods which use the server-streaming feature of gRPC/proto3, with the following example...
https://github.com/riscv-software-src/opensbi/blob/791704cd09c019decf438f6e4f56423cc95cb66a/lib/sbi/sbi_ecall_cppc.c#L36 Unless there's something I've missed in the SBI specification about CPPC register values never exceeding 32-bits when XLEN is 32, this line is wrong whenever the code is compiled...
Tracking issue for the following command implementations: - [help] Currently, only the base `?help` command is fully supported. `?help [command]` still needs to be implemented for all commands. The next...