You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling safe_pqc_kyber v0.6.2 (/home/foobar/code/safe-kyber)
warning: dropping unsupported crate type `cdylib` for target `thumbv7em-none-eabi`
error[E0308]: mismatched types
--> src/reference/polyvec.rs:39:31
|
39 | let mut tmp : u64 = ((t[k] as u32) << 11) + KYBER_Q as u32/2;
| --- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `u64`, found `u32`
| |
| expected due to this
|
help: you can convert a `u32` to a `u64`
|
39 | let mut tmp : u64 = (((t[k] as u32) << 11) + KYBER_Q as u32/2).into();
| + ++++++++
For more information about this error, try `rustc --explain E0308`.
warning: `safe_pqc_kyber` (lib) generated 1 warning
error: could not compile `safe_pqc_kyber` (lib) due to 1 previous error; 1 warning emitted
[foobar@localhost safe-kyber]$
The text was updated successfully, but these errors were encountered:
Fix no_std for Cargo.toml
ci: Temp check own branch
Ignore kyber1024 for now - pending issue #3
Revert "ci: Temp check own branch"
This reverts commit 993292e.
Got this in CI when doing feature testing
$ cargo build --release --target thumbv7em-none-eabi --no-default-features --features kyber1024
The text was updated successfully, but these errors were encountered: