summaryrefslogtreecommitdiff
path: root/maint
Commit message (Collapse)AuthorAgeFilesLines
...
* | Updates for reproducible build docsNick Mathewson2021-08-263-1/+12
| |
* | address review commentsTrinity Pointard2021-08-263-13/+48
| | | | | | | | sha256: 7f190568fa05f71ad356dc56a7a9725a4be18e5e40d6880f469e22981a18edd7
* | fix segfault on static binTrinity Pointard2021-08-251-2/+4
| | | | | | | | | | | | see https://github.com/rusqlite/rusqlite/issues/914 sha256: 684ebc4b8c270fc63beba185f6c54ceeb98734f13aa7aeca9b64acb33432a21c
* | make arti availlable as build artifactTrinity Pointard2021-08-252-0/+29
|/ | | | | and make builds reproducible sha256sum: f141c54929a43a31b9ed6b529f6f863aace87f7406818b2f8ffe2b7a5e2803fb
* add_warning.py: explain what to do when no args are givenNick Mathewson2021-08-181-0/+4
|
* Add clippy::missing_panics_doc to add_warnings.py.Nick Mathewson2021-08-181-0/+1
|
* Add the "implicit_clone" lint.S0AndS02021-08-171-1/+1
| | | | | | | | | | | | | | > Check `implicit_clone` section of Clippy documentation for details; > > https://rust-lang.github.io/rust-clippy/master/index.html#implicit_clone This adds, and addresses, the following Clippy configuration to crates; #![deny(clippy::implicit_clone)] And moves related line within `maint/add_warning.py` file. My intent is to mitigate extra edits after merging, so please let me know if I need to do this last bit differently.
* Use add_warnings.py for clippy::cast_losslessNick Mathewson2021-08-131-0/+1
|
* Add unnecessary_wraps to the big warning list.Nick Mathewson2021-08-061-1/+1
|
* Remove spurious "exit 0"Nick Mathewson2021-08-041-2/+0
|
* Add my "fuzz everything" script that I like to run overnightNick Mathewson2021-08-041-0/+47
|
* Add a shell script to verify that every package has an okay license.Nick Mathewson2021-07-061-0/+81
| | | | | | | We implement this by giving a list of permitted licenses, and then using cargo-license to dump everything's actual license. Since packages list their licenses as "x OR y OR z", we permit any package that is available under at least one license on the allow-list.
* Add clippy warn needless pass by valueYUAN LYU2021-06-211-1/+1
|
* Add clippy warn needless borrowYUAN LYU2021-06-211-1/+1
|
* Note a couple of more desired warnings.Nick Mathewson2021-06-171-0/+2
|
* Add noop_method_call warning.Nick Mathewson2021-05-271-0/+1
| | | | | | This would have saved ahf and me a lot of confusion in debugging a situation where we were cloning a reference of a type that didn't implement Clone.
* Add a script with the command I've been using for coverageNick Mathewson2021-05-261-0/+3
|
* Enable cargo_common_metadata warning.Nick Mathewson2021-05-251-1/+1
|
* Add a script to use cargo-readme to update all per-crate README.md files.Nick Mathewson2021-05-211-0/+12
|
* Add the "unreachable_pub" lint.Nick Mathewson2021-05-181-1/+6
| | | | | | This is a somewhat obnoxious change in its scope and requirements, but it makes it easier to understand what the real public and private parts of our APIs are.
* Add the little script I use to add warnings to crates.Nick Mathewson2021-05-181-0/+100