aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-rpc-connect/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
...
* Bump versions of internal arti crates for Arti 1.3.2Nick Mathewson2025-01-071-5/+5
| | | | | | | | | | | | | The affected crates follow our regular versioning. They all get bumped to 0.26.0. Done with ``` for crate in $(./maint/list_crates |grep '^arti-\|tor-' ); do cargo set-version --bump minor -p $crate; done ```
* Run "fixup-features" in preparation for release.Nick Mathewson2025-01-061-1/+1
|
* connpt: Make unix socket handling more robust.Nick Mathewson2024-12-191-1/+2
| | | | | | | | | | Grab an associated lock file... - ... then delete the socket file (if it's present) ... - ... then bind to it. On exit: - remove the socket - then drop the lock.
* rpc-connect: Make LoadOptions buildable.Nick Mathewson2024-12-191-0/+1
|
* connpt: use cfg-if to declare connect point defaults.Nick Mathewson2024-12-091-0/+1
|
* Bump all the unstable tor- and arti- crates to 0.25.0.Gabriela Moldovan2024-12-021-5/+5
| | | | | | | | | | Done using: ``` for crate in $(./maint/list_crates | rg '^(tor|arti-)'); do cargo set-version -p $crate 0.25.0 done ```
* Bump the versions of the non-{arti-,tor-} crates.Gabriela Moldovan2024-12-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The non-{arti-,tor-} crates are: ``` ./maint/list_crates | rg -v '^(tor|arti)' oneshot-fused-workaround slotmap-careful test-temp-dir fslock-guard hashx equix caret fs-mistrust safelog retry-error ``` We split them in the following categories: * crates with no changes (no version bumps): ``` maint/changed_crates -v "arti-v$LAST_VERSION" 2>&1 >/dev/null | grep -i "no change" | grep -v '\(tor\|arti\)-' oneshot-fused-workaround: No change. test-temp-dir: No change. caret: No change. ``` * crates that only have non-functional changes (bump the patch version): - slotmap-careful - fslock-guard - hashx - equix - fs-mistrust - safelog - retry-error * crates where APIs were broken (bump minor): None The bumps from this commit were created using this script: ``` PATCH=" slotmap-careful fslock-guard hashx equix fs-mistrust safelog retry-error " for crate in $PATCH; do cargo set-version --bump patch -p $crate; done ```
* Fix several Cargo.tomls to satisfy cargo-sort.Gabriela Moldovan2024-12-021-1/+1
|
* Run fixup-features in preparation for release (fmt).Gabriela Moldovan2024-12-021-1/+10
|
* Run fixup-features in preparation for release.Gabriela Moldovan2024-12-021-1/+1
|
* tor-rpc-connect: Bump thiserror to 2.Gabriela Moldovan2024-11-281-1/+1
|
* connect points: Remember original string addressesNick Mathewson2024-11-191-0/+2
| | | | The cookie authentication protocol will need these.
* rpc-connect: Types for cookie authentication.Nick Mathewson2024-11-191-1/+4
| | | | (Cookie authentication is described in rpc-cookie-sketch.md)
* RPC connect points: Facility to load from files.Nick Mathewson2024-11-191-1/+2
|
* tor-connect-point: new crate to manage RPC connect pointsNick Mathewson2024-11-191-0/+35
See doc/dev/rpc-book/src/rpc-connect-sketch.md for details.