Julien Cretin
Julien Cretin
- Do not panic if store doesn't initialize, just fail all storage operations. Done in [opt_store](https://github.com/google/OpenSK/compare/develop...ia0:opt_store) branch but increases binary size from 124.1k to 125.7k. - [Blocked by Tock 2]...
Generated code (like derives) don't generate warnings when unused. They also don't end up in the final binary when unused (library size and compilation time shouldn't matter and are negligible)....
We currently use a symlink to specific the `rust-toolchain` based on what is used by `libtock-rs`. This is problematic for github workflows that don't need to clone the submodules since...
`git clone && ./setup.sh && ./deploy` should be reproducible at any time for a given commit. This is currently not the case, at least because we don't commit a `Cargo.lock`....
### Summary The lint description says: > drop does nothing for types that implement Copy This is wrong, drop can be used to forget that a function returns a non-unit...
Hi all, I'd like to list a few issues for those trying to write libraries on top of the abstractions provided by this crate. I'll only focus on `nor_flash::ReadNorFlash` and...
The 2 following tests are failing at master with `cargo test` and are the only failing at this PR: - `rand_choose_sect_create_random_passwords_from_a_set_of_user_defined_characters_line_8` - `rand_range_sect_generate_random_numbers_within_a_range_line_7` The link checker fails at master and...
This issue lists breaking changes that could be worth doing. Since they would bump the major version, doing as much of them simultaneously would be best. ### `static` instead of...
We currently have custom unsafe functions to split input and output into chunks. Once [`slice_as_chunks`](https://github.com/rust-lang/rust/issues/74985) is stable we can use it.