*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::missing_errors_doc)] // TODO: Add `must_use` attributes #![allow(clippy::must_use_candidate)] // TODO: To many false positives #![allow(clippy::enum_glob_use)] // TODO: False positives <https://github.com/rust-lang/rust-clippy/issues/5917> #![allow(clippy::wildcard_imports)] mod channel; mod constraints; mod polynomial; ``` *From [`crypto/stark/src/lib.rs:47`](https://github.com/0xProject/OpenZKP/blob/67c807e0e3439834ff8960f9c1de7be44f241fcf/crypto/stark/src/lib.rs#L47)* <!--{"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/stark/src/lib.rs", "filename": "crypto/stark/src/lib.rs", "line": 46, "line_end": 47, "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::missing_errors_doc)]\n// TODO: Add `must_use` attributes\n#![allow(clippy::must_use_candidate)]\n// TODO: To many false positives\n#![allow(clippy::enum_glob_use)]\n// TODO: False positives <https://github.com/rust-lang/rust-clippy/issues/5917>\n#![allow(clippy::wildcard_imports)]\n\nmod channel;\nmod constraints;\nmod polynomial;\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/stark/src/lib.rs:47