betrusted-curve25519-dalek-.../curve25519-dalek/src/backend/serial/scalar_mul
Tony Arcieri c058cd9057
curve: Expand lints (#530)
Adds a lints section to the top of lib.rs with the following:

    #![warn(
        clippy::unwrap_used,
        missing_docs,
        rust_2018_idioms,
        unused_lifetimes,
        unused_qualifications
    )]

`warn` is used instead of `deny` to prevent the lints from firing during
local development, however we already configure `-D warnings` in CI so
if any lint fails on checked-in code, it will cause a CI failure.

This commit also fixes or explicitly allows any current violations of
these lints. The main ones were:

- `clippy::unwrap_used`: replaces usages of `unwrap` with `expect`
- `rust_2018_idioms`: no implicit lifetimes, which were present on
  usages of `core::fmt::Formatter`
2023-08-28 02:32:31 -04:00
..
mod.rs Workspace curve25519 under curve25519-dalek 2023-06-27 04:00:12 +00:00
pippenger.rs curve: Expand lints (#530) 2023-08-28 02:32:31 -04:00
precomputed_straus.rs Workspace curve25519 under curve25519-dalek 2023-06-27 04:00:12 +00:00
straus.rs Workspace curve25519 under curve25519-dalek 2023-06-27 04:00:12 +00:00
variable_base.rs Workspace curve25519 under curve25519-dalek 2023-06-27 04:00:12 +00:00
vartime_double_base.rs Workspace curve25519 under curve25519-dalek 2023-06-27 04:00:12 +00:00