summaryrefslogtreecommitdiff
path: root/maint/list_crates
Commit message (Collapse)AuthorAgeFilesLines
* Run "black" to reformat all our pythonNick Mathewson2024-10-241-13/+26
| | | | | | | | | | | | | | | | | "Black" is an "opinionated" python formatter, whose opinionatedness is somewhat in the spirit of rustfmt. This MR runs black with default settings on all of our python code in Arti. It was produced by the following commands ``` # Everything in python/ black python/ # Everything with a .py extension fd '.py$' -X black # Everything with a python shebang. git grep -l '#! */usr/bin/env *python' | xargs black ```
* Add a script to run cbindgen and check its outputs.Nick Mathewson2024-07-311-3/+7
| | | | | | | | | | This is a bit complicated since: - Using cbindgen with macro expansion requires a nightly rust: so, we have to look for one. - There are some cbindgen warnings which I cannot find any way to suppress, so instead of giving all warnings, it seems better to give a diff from the old list of warnings to the new list.
* maint/list_crates: Include `Crate.raw_metadata`Ian Jackson2024-07-101-2/+3
|
* maint/list_crates: Add a type annotationIan Jackson2024-07-101-1/+1
|
* maint/list_crates: Resolve `Crate.publish`Ian Jackson2024-07-101-1/+3
| | | | | If this is unset, set it to True. Otherwise it's super confusing (and every call site needs to do this special comparison.)
* Rename list_crates_publish to list_cratesIan Jackson2024-05-081-0/+59
|
* ABolish maint/list_cratesIan Jackson2024-05-081-30/+0
| | | | There are no callers any more.
* maint/list_crates: Strip maint/, handling maint/ cratesIan Jackson2024-02-081-1/+1
|
* Introduce maint/list_crates_publishIan Jackson2024-02-051-0/+3
|
* Examples using hyper v1ramidzkh2024-01-111-1/+1
|
* Update "list_crates" to handle examples right.Nick Mathewson2023-09-051-6/+6
|
* shell: use /usr/bin/env instead of absolute pathsEmil Engler2023-01-251-1/+1
| | | | | | | | | | This commit changes the shebang in all shell scripts from absolute paths (such as `/bin/bash` or `/usr/bin/python3`) to the `/usr/bin/env` binary with the accompanying interpreter as it's argument. The reason for this are as follows: - NixOS cannot work with absolute paths - BSD systems install their packages in /usr/local/bin
* format python script in maintFAMASoon2022-08-171-1/+5
|
* rename *.py scripts to bare nameIan Jackson2022-02-181-0/+23
Update all references. There are three remaining hits for git-grep '\.py\b' all of which are scripts in "little-t-tor", not here in arti.