<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates, 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-07T19:26:13Z</updated>
<entry>
<title>arti-client: Update release date.</title>
<updated>2025-07-07T19:26:13Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T19:26:13Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6773c426d97a21f66020ab26a6b7938fcaa97929'/>
<id>urn:sha1:6773c426d97a21f66020ab26a6b7938fcaa97929</id>
<content type='text'>
</content>
</entry>
<entry>
<title>hashx, equix: Update lock files.</title>
<updated>2025-07-07T17:53:01Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:53:01Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8703a616330f162a42cefe85dd1ce457fc700de1'/>
<id>urn:sha1:8703a616330f162a42cefe85dd1ce457fc700de1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump arti crate to 1.4.5</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:27:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=cde45160a8ed4f0865b1de08849f960248969942'/>
<id>urn:sha1:cde45160a8ed4f0865b1de08849f960248969942</id>
<content type='text'>
Done using:

```
cargo set-version --bump patch -p arti
```
</content>
</entry>
<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>Run cargo update for {hashx,equix}/bench.</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:13:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7330578a311dea094b6b1055ff87e78360c20049'/>
<id>urn:sha1:7330578a311dea094b6b1055ff87e78360c20049</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>tor-hsservice: Suppress false-positive clippy::useless_concat.</title>
<updated>2025-07-07T16:03:11Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T16:03:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f6518eefc70470cd40f8698c552a4dff83928c30'/>
<id>urn:sha1:f6518eefc70470cd40f8698c552a4dff83928c30</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-dirmgr, tor-guardmgr: Use std::slice::from_ref as suggested by clippy.</title>
<updated>2025-07-07T16:01:42Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T15:59:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=29ec638ad3b966cec3083c868fd354e0ba0d3133'/>
<id>urn:sha1:29ec638ad3b966cec3083c868fd354e0ba0d3133</id>
<content type='text'>
</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>tor-linkspec: Fix over-indented docs.</title>
<updated>2025-07-07T15:57:24Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T15:57:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d49e96ef3160720690adf384c4bb9c05ebc9670c'/>
<id>urn:sha1:d49e96ef3160720690adf384c4bb9c05ebc9670c</id>
<content type='text'>
This fixes a clippy warning.
</content>
</entry>
</feed>
