Julien Cretin
Julien Cretin
I'm not sure we want to merge this. Not sure of the implications and why `jsonschema` doesn't figure out the draft version based on the `$schema` value in the schema....
It looks like taplo uses glob under the hood and glob doesn't have an option yet to not follow symlinks, see https://github.com/rust-lang/glob/issues/62. However when that issue will be resolved, will...
**Is your feature request related to a problem? Please describe.** One has to write `unreachable!()` after `server.run().await`. **Describe the solution you'd like** I want `Server::run()` to return `!` (never type):...
**Describe the solution you'd like** I would like to use `probe-rs run` as a terminal to the device using the RTT down channel. **Describe alternatives you've considered** I considered using...
It is currently not possible to do `defmt-print -e foo.wasm` because the decoder expect an ELF and fails with `Unknown file magic`. It looks like under the hood `defmt-decoder` uses...
I'm not sure if it's feasible or if it even makes sense, but I was wondering if it is (or will be) possible to build core (and alloc) with defmt...
Would it make sense to add the following methods to `AeadInPlace` (similarly for `AeadMutInPlace`) with default implementations based on the existing methods? ```rust fn encrypt_mut(&self, nonce: &Nonce, aad: &[u8], plain:...
I couldn't easily figure by myself reading the code and documentation of `proc-macro` and `proc-macro2`, so asking here. Is it possible to generate a `Span` that points to its own...
I believe this is the reason behind #875. Here is a repro case: ```shell git clone [email protected]:ia0/data-encoding.git cd data-encoding/lib/macro/internal cargo upgrade -p syn -i --verbose --verbose ``` Note how the...