*On 2020-08-17 @Recmo wrote in [`645f7bd`](https://github.com/0xProject/OpenZKP/commit/645f7bd004f4922be47c644645649595af526709) “Fix lints”:* False positives <https://github.com/rust-lang/rust-clippy/issues/5917> ```rust #![allow(clippy::multiple_crate_versions)] // TODO: Toggle based on stable/nightly // #![allow(clippy::missing_errors_doc)] // TODO: Add `must_use` attributes #![allow(clippy::must_use_candidate)] // TODO: False positives <https://github.com/rust-lang/rust-clippy/issues/5917> #![allow(clippy::wildcard_imports)] mod private_key; mod public_key; mod signature; ``` *From [`crypto/elliptic-curve-crypto/src/lib.rs:45`](https://github.com/0xProject/OpenZKP/blob/67c807e0e3439834ff8960f9c1de7be44f241fcf/crypto/elliptic-curve-crypto/src/lib.rs#L45)* <!--{"commit-hash": "645f7bd004f4922be47c644645649595af526709", "author": "Remco Bloemen", "author-mail": "<remco@0x.org>", "author-time": 1597707629, "author-tz": "-0700", "committer": "Remco Bloemen", "committer-mail": "<remco@0x.org>", "committer-time": 1597707629, "committer-tz": "-0700", "summary": "Fix lints", "previous": "53f57e8cf425f87f7c3371a3385bd738108179fe crypto/elliptic-curve-crypto/src/lib.rs", "filename": "crypto/elliptic-curve-crypto/src/lib.rs", "line": 44, "line_end": 45, "kind": "TODO", "issue": "False positives <https://github.com/rust-lang/rust-clippy/issues/5917>", "head": "False positives <https://github.com/rust-lang/rust-clippy/issues/5917>", "context": "#![allow(clippy::multiple_crate_versions)]\n// TODO: Toggle based on stable/nightly\n// #![allow(clippy::missing_errors_doc)]\n// TODO: Add `must_use` attributes\n#![allow(clippy::must_use_candidate)]\n// TODO: False positives <https://github.com/rust-lang/rust-clippy/issues/5917>\n#![allow(clippy::wildcard_imports)]\n\nmod private_key;\nmod public_key;\nmod signature;\n", "repo": "0xProject/OpenZKP", "branch-hash": "67c807e0e3439834ff8960f9c1de7be44f241fcf"}-->
On 2020-08-17 @recmo wrote in
645f7bd“Fix lints”:False positives rust-lang/rust-clippy#5917
From
crypto/elliptic-curve-crypto/src/lib.rs:45