summaryrefslogtreecommitdiff
path: root/examples/gsoc2023/pt-proxy
Commit message (Collapse)AuthorAgeFilesLines
* Bump all the unstable tor- and arti- crates to 0.37.0.Gabriela Moldovan2025-12-021-5/+5
| | | | | | | | | Done using: ``` for crate in $(./maint/list_crates | rg '^(tor|arti-)'); do cargo set-version -p $crate 0.37.0 done
* maint: bump minor versions of all published cratesSteven Engler2025-10-291-5/+5
| | | | | | | ```bash readarray -t publish < <(cargo metadata --format-version 1 | jq -r '.packages[] | select((.id | startswith("path+file:///")) and (.rust_version != null) and (.publish == null or .publish == true or .publish != [])) | .name') for package in "${publish[@]}"; do echo "$package:"; cargo set-version --bump minor -p "$package"; done ```
* release: Bump versions in examples/ and maint/Wesley Aptekar-Cassels2025-10-021-5/+5
|
* release: Run fixup-features.Wesley Aptekar-Cassels2025-10-011-5/+5
|
* Require tracing-subscriber 0.3.20Nick Mathewson2025-09-021-1/+1
| | | | Fixes RUSTSEC-2025-0055.
* Switch Cargo.toml files to edition 2024.Nick Mathewson2025-08-072-2/+2
| | | | | | | | | | | | | | First, run ``` git grep -l "^edition =" | xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;' ``` Second, manually verify that all Cargo.toml files have changed, and nothing else has changed. Third, run cargo fmt again.
* examples, fixup-features: use inline vars in format stringNick Mathewson2025-05-291-10/+10
| | | | Nightly clippy now suggests this.
* ./maint/cargo_sort: Run cargo-sort on the entire workspace.Gabriela Moldovan2025-05-271-1/+7
| | | | | | | | | | | | | | | | | | | The [latest version] of `cargo-sort` is more opinionated than the previous one, and is now causing the `rust-checks` job to fail on `main`. This commit applies the fixes needed to satisfy the new `cargo-sort` rules. These changes were generated by running `cargo sort --workspace` several times, until `cargo sort --check --workspace` finally succeeded (it couldn't fix all the errors in one go, for some reason). I have omitted the changes `cargo-sort` made to the top-level `Cargo.toml`, to preserve the topological ordering of the workspace members. Closes #2014 [latest version]: https://github.com/DevinR528/cargo-sort/blob/f066ae80e5e6f5c1d8f0e2b8099461dcb97d9656/changelog.md#200
* Upgrade to fast-socks5 0.10.0Nick Mathewson2025-01-061-1/+1
|
* cargo: Update `thiserror` to `2`Clara Engler2024-11-121-1/+1
|
* remove unused dependenciestrinity-1686a2024-04-021-4/+2
| | | | Edited-by: Nick Mathewson <[email protected]>
* Run "fixup-features" in preparation for next release.Nick Mathewson2024-03-281-0/+3
|
* Fix typosDimitris Apostolou2024-01-081-1/+1
|
* Use "wrap_help" feature for clap.Nick Mathewson2023-11-151-1/+1
|
* pt-proxy example: Upgrade to fast-socks5 v0.9.1.Nick Mathewson2023-09-282-3/+3
|
* Use a more recent tracing_subscriber in examples.Nick Mathewson2023-09-051-1/+1
| | | | Part of a solution for cargo-audit.
* Set license on gsoc2023 examples to "MIT OR Apache-2.0"Nick Mathewson2023-09-051-0/+1
| | | | | With permission from gotlou; see discussion at https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/1556
* Move examples to examples/gsoc2023Nick Mathewson2023-09-053-0/+393