aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-dirauth/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump versions for tor-* and arti-* cratesSteven Engler2026-08-031-4/+4
| | | | | | | ```bash readarray -t bump < <(maint/list-crates | grep -P '^tor-|^arti-') for crate in "${bump[@]}"; do cargo set-version --bump minor -p "${crate}"; done ```
* maint: ran 'cargo sort' in arti-dirauth and tor-dirauthSteven Engler2026-08-031-10/+10
| | | | | | | | | | I'm not actually sure what I did here. I was getting a lot of confusing results from 'cargo sort' and 'maint/cargo-sort', so I ran a bunch of commands until 'maint/cargo-sort' was okay. ('maint/cargo-sort' still shows some errors, but not in arti-dirauth anymore.) But as long as the 'maint/cargo-sort' in CI is okay with the changes, then I think it's fine.
* maint: ran fixup-featuresSteven Engler2026-08-031-1/+1
|
* arti authority plugin: Command line parsing skeletonIan Jackson2026-07-211-0/+4
|
* arti-dirauth: Build an arti consensus method plugin binaryIan Jackson2026-07-211-0/+6
| | | | This just panics, right now.
* Version bumps for 2.5.0Nick Mathewson2026-06-301-3/+3
| | | | | | | | | | | | | Closes #2617. We've lucked out this time, and it turns out that every one of our published crates gets a minor bump. So this was generated with: ``` for cr in $(./maint/list-crates); do cargo set-version -p $cr --bump minor done ```
* tor-dirauth: Correct authors (fmt)Ian Jackson2026-06-221-1/+5
|
* arti-dirauth: Update Cargo metadata (authors, MSRV)Ian Jackson2026-06-221-2/+2
|
* arti-dirauth: New crate, emptyIan Jackson2026-06-221-0/+26
Let's start this now.