<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/equix, branch arti-v1.9.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.9.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.9.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-01-13T09:56:47Z</updated>
<entry>
<title>cargo: Update equix and hashx bench</title>
<updated>2026-01-13T09:56:47Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2026-01-13T09:56:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e4f3727a493bd9146efcb375b124cd17ca764e5d'/>
<id>urn:sha1:e4f3727a493bd9146efcb375b124cd17ca764e5d</id>
<content type='text'>
This commit runs `cargo update` on the respective crates.
</content>
</entry>
<entry>
<title>Run cargo update for {hashx,equix}/bench</title>
<updated>2025-12-02T11:07:59Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-12-02T10:56:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4d1115a4e08264544c831e23b523cf6b85fefcc9'/>
<id>urn:sha1:4d1115a4e08264544c831e23b523cf6b85fefcc9</id>
<content type='text'>
Done using

```
  (cd crates/hashx/bench &amp;&amp; cargo update)
  (cd crates/equix/bench &amp;&amp; cargo update)
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates</title>
<updated>2025-12-02T11:07:31Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-12-02T10:54:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6b62b4f0ce73d3bb09b6bc748a5441abc8079d7c'/>
<id>urn:sha1:6b62b4f0ce73d3bb09b6bc748a5441abc8079d7c</id>
<content type='text'>
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
futures-copy
```

We split them in the following categories:
  * crates with no changes (no version bumps): None
    ```
    maint/changed_crates -v "arti-v$LAST_VERSION" 2&gt;&amp;1 &gt;/dev/null | grep -i "no change" | grep -v '\(tor\|arti\)-'
    ```

  * crates that only have non-functional changes (bump the patch version,
    but not the dependend-on version):
     - oneshot-fused-workaround
     - slotmap-careful
     - test-temp-dir
     - fslock-guard
     - equix
     - caret
     - safelog
     - retry-error

  * crates where functional changes were made, but no APIs were added or broken:
     - hashx
     - fs-mistrust
     - futures-copy

  * crates where APIs were broken (bump minor): None

The bumps from this commit were created using this script:

```
PATCH_NF=(
oneshot-fused-workaround
slotmap-careful
test-temp-dir
fslock-guard
equix
caret
safelog
retry-error
)

PATCH="
hashx
fs-mistrust
futures-copy
"

./maint/bump_nodep "${PATCH_NF[@]}"

for crate in $PATCH; do
    cargo set-version --bump patch -p $crate;
done
```
</content>
</entry>
<entry>
<title>Fix name of clippy lint to unchecked_time_subtraction (2)</title>
<updated>2025-11-06T11:28:22Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-11-06T11:23:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a5fd5c48ea059a80cc1f6c50e248654b5ff3aaff'/>
<id>urn:sha1:a5fd5c48ea059a80cc1f6c50e248654b5ff3aaff</id>
<content type='text'>
Run maint/add_warning
</content>
</entry>
<entry>
<title>equix-bench: ran `cargo update`</title>
<updated>2025-10-29T19:37:15Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-10-29T19:37:15Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e2615de54b3cacf1094d03c2573edc4d3cca40cd'/>
<id>urn:sha1:e2615de54b3cacf1094d03c2573edc4d3cca40cd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>maint: bump minor versions of all published crates</title>
<updated>2025-10-29T19:32:37Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-10-29T19:32:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7e3bc2af0994706f3597cd14d340736a4d0f03e3'/>
<id>urn:sha1:7e3bc2af0994706f3597cd14d340736a4d0f03e3</id>
<content type='text'>
```bash
readarray -t publish &lt; &lt;(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
```
</content>
</entry>
<entry>
<title>Bump MSRV from 1.85.1 to 1.86</title>
<updated>2025-10-21T15:07:38Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2025-10-21T15:07:38Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=28a57188cfcafd711f735698e7dadccd417740c4'/>
<id>urn:sha1:28a57188cfcafd711f735698e7dadccd417740c4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update hashx and equix bench Cargo.lock files.</title>
<updated>2025-10-06T16:42:13Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-10-06T16:42:13Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=30ecd0035d378a9f3df36bcbc9a60ff2cd77ff95'/>
<id>urn:sha1:30ecd0035d378a9f3df36bcbc9a60ff2cd77ff95</id>
<content type='text'>
</content>
</entry>
<entry>
<title>release: Update lockfiles.</title>
<updated>2025-10-02T15:45:08Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-10-02T15:45:08Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8d3b9f24c86c1d2acd6a2ec7815d3ffc1ce6cf5f'/>
<id>urn:sha1:8d3b9f24c86c1d2acd6a2ec7815d3ffc1ce6cf5f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>release: Bump versions.</title>
<updated>2025-10-02T15:07:22Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-10-01T21:24:15Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b0fbe7f18a285f747d3e5cd46f38b8c33e143176'/>
<id>urn:sha1:b0fbe7f18a285f747d3e5cd46f38b8c33e143176</id>
<content type='text'>
Because we've updated our MSRV, we must bump the minor version for every
package.

This was done as follows:

cargo set-version -p arti 1.6.0

cargo set-version -p oneshot-fused-workaround 0.4.0
cargo set-version -p slotmap-careful 0.4.0
cargo set-version -p test-temp-dir 0.5.0
cargo set-version -p fslock-guard 0.4.0
cargo set-version -p hashx 0.5.0
cargo set-version -p equix 0.4.0
cargo set-version -p caret 0.7.0
cargo set-version -p fs-mistrust 0.12.0
cargo set-version -p safelog 0.6.0
cargo set-version -p retry-error 0.8.0

xargs -I P &lt;&lt;END cargo set-version -p P 0.35.0
tor-basic-utils
tor-error
tor-general-addr
tor-geoip
tor-rtcompat
tor-rtmock
tor-async-utils
tor-config
tor-config-path
tor-rpc-connect
tor-log-ratelim
tor-rpcbase
tor-memquota
tor-units
tor-llcrypto
tor-bytes
tor-protover
tor-checkable
tor-cert
tor-key-forge
tor-hscrypto
tor-socksproto
tor-linkspec
tor-cell
tor-proto
tor-netdoc
tor-consdiff
tor-netdir
tor-relay-selection
tor-persist
tor-keymgr
tor-chanmgr
tor-ptmgr
tor-dircommon
tor-guardmgr
tor-circmgr
tor-dirclient
tor-dirmgr
tor-dirserver
tor-hsclient
tor-hsservice
tor-hsrproxy
tor-relay-crypto
arti-client
arti-relay
arti-rpcserver
arti-ureq
arti-rpc-client-core
END
</content>
</entry>
</feed>
