<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-proto, branch arti-v1.4.5</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.5</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.5'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-07-07T17:41:41Z</updated>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.32.0.</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:26:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=721568b1bf261f6635c61c9f3abe52e24af1bf9c'/>
<id>urn:sha1:721568b1bf261f6635c61c9f3abe52e24af1bf9c</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.32.0
done
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates.</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:24:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c69083de50fb19331eba474ec6d1a3e5893274a3'/>
<id>urn:sha1:c69083de50fb19331eba474ec6d1a3e5893274a3</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
```

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):
     - oneshot-fused-workaround
     - slotmap-careful
     - test-temp-dir
     - fslock-guard
     - hashx
     - equix
     - caret
     - safelog
     - retry-error

  * crates where APIs were broken (bump minor):
     - fs-mistrust (the implicit once_cell feature was removed)

The bumps from this commit were created using this script:

```
PATCH="
oneshot-fused-workaround
slotmap-careful
test-temp-dir
fslock-guard
hashx
equix
caret
safelog
retry-error
"

for crate in $PATCH; do
    cargo set-version --bump patch -p $crate;
done

MINOR="
fs-mistrust
"

for crate in $MINOR; do
    cargo set-version --bump minor -p $crate;
done
```
</content>
</entry>
<entry>
<title>tor-proto: Remove unnecessary return.</title>
<updated>2025-07-07T15:58:27Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T15:58:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6672d6eb48c42df25b8de32dc5af60546287e92d'/>
<id>urn:sha1:6672d6eb48c42df25b8de32dc5af60546287e92d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Temporarily suppress mismatched_lifetime_syntaxes.</title>
<updated>2025-07-07T15:50:04Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T15:50:04Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a11b611466a5a73f5e06a0aabd17284a57d12fe3'/>
<id>urn:sha1:a11b611466a5a73f5e06a0aabd17284a57d12fe3</id>
<content type='text'>
See #2060.
</content>
</entry>
<entry>
<title>Merge branch 'arti-1.4.5-prep' into 'main'</title>
<updated>2025-07-07T13:26:54Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T13:26:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f2077076c6718b11cce147e1bb1b84a5b63cba58'/>
<id>urn:sha1:f2077076c6718b11cce147e1bb1b84a5b63cba58</id>
<content type='text'>
Run fixup-features, upgrade deps in preparation for release

See merge request tpo/core/arti!3083</content>
</entry>
<entry>
<title>Upgrade to derive-deftly 1.1.0.</title>
<updated>2025-07-07T11:01:51Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T09:52:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=83ec497ba66b48198d7600ec1ecd93cfd59c1cd3'/>
<id>urn:sha1:83ec497ba66b48198d7600ec1ecd93cfd59c1cd3</id>
<content type='text'>
I had to also bump `toml` to `0.8.23`, because `toml 0.8.22` is
incompatible with `serde_spanned 0.6.9` (which is automatically pulled
in because of the d-d upgrade).
</content>
</entry>
<entry>
<title>proto: ignore large_enum_variant warning</title>
<updated>2025-07-03T18:50:33Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-07-03T18:50:33Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=057c63b43d95a57bc3be00870ae046b40c1c6e6a'/>
<id>urn:sha1:057c63b43d95a57bc3be00870ae046b40c1c6e6a</id>
<content type='text'>
This appears to be a testing-only struct, so we can safely ignore
the warning.
</content>
</entry>
<entry>
<title>proto: Add clippy exception for handle_cmd().</title>
<updated>2025-06-27T14:16:16Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-06-27T11:11:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4476d5fd4c52f274cfcd546192e716a92b831fa7'/>
<id>urn:sha1:4476d5fd4c52f274cfcd546192e716a92b831fa7</id>
<content type='text'>
We need to pass by value for the conflux case.
</content>
</entry>
<entry>
<title>proto: Add clippy exception for next_circ_action().</title>
<updated>2025-06-27T14:16:16Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-06-27T11:03:51Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=66c5985646f72fa73dff55c889fb45f124a7e4fd'/>
<id>urn:sha1:66c5985646f72fa73dff55c889fb45f124a7e4fd</id>
<content type='text'>
The function can return an error, but only if `conflux` is enabled.
</content>
</entry>
<entry>
<title>proto: Remove unnecessary return statement to satisfy clippy.</title>
<updated>2025-06-27T14:16:16Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-06-27T11:01:33Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1d66cdaa0e9761ec8bf7f8ce970b3aae97569ced'/>
<id>urn:sha1:1d66cdaa0e9761ec8bf7f8ce970b3aae97569ced</id>
<content type='text'>
With the latest rustc version, this now triggers a warning.
</content>
</entry>
</feed>
