<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-proto, branch arti-v2.0.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.0.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.0.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-02-02T17:04:00Z</updated>
<entry>
<title>release: Bump `slotmap-careful` to 0.6.0.</title>
<updated>2026-02-02T17:04:00Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2026-02-02T16:50:34Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fa7cfb53f5c3bb3f28fd2be65e908c78bd05163a'/>
<id>urn:sha1:fa7cfb53f5c3bb3f28fd2be65e908c78bd05163a</id>
<content type='text'>
Since we removes a existing feature, we need to bump the version.
</content>
</entry>
<entry>
<title>release: Bump `arti-*` and `tor-*` crates to 0.39.0</title>
<updated>2026-02-02T17:03:49Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2026-02-02T16:41:20Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b80fc6060ca05104f6a2d499b39778cd51bb1b76'/>
<id>urn:sha1:b80fc6060ca05104f6a2d499b39778cd51bb1b76</id>
<content type='text'>
Done via:

```
for crate in $(./maint/list-crates  | rg '^(tor|arti-)'); do
        cargo set-version -p $crate 0.39.0
done
```
</content>
</entry>
<entry>
<title>proto: Allow unused async in WIP reactor code</title>
<updated>2026-01-29T16:33:24Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:22:03Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0fa7fcff1696554ba049b5f01e1282c14f2ade25'/>
<id>urn:sha1:0fa7fcff1696554ba049b5f01e1282c14f2ade25</id>
<content type='text'>
This will need to become async soon.
</content>
</entry>
<entry>
<title>proto: Remove unused async from relay reactor</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:21:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7cfe5a3768e94249a32bde081590203f2dea0393'/>
<id>urn:sha1:7cfe5a3768e94249a32bde081590203f2dea0393</id>
<content type='text'>
Fixes a clippy warning
</content>
</entry>
<entry>
<title>proto: Document that the hop list is shared with the BWD</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:19:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3cbefaca2cf82f386f11b6eaa0788e2e37cfc17b'/>
<id>urn:sha1:3cbefaca2cf82f386f11b6eaa0788e2e37cfc17b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>proto: Rename the FWD -&gt; BWD channel</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:11:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8395864ee57c9aa91ee2aa1d8d31c58e4e364d84'/>
<id>urn:sha1:8395864ee57c9aa91ee2aa1d8d31c58e4e364d84</id>
<content type='text'>
In the backward reactor, we call this the `forward_reactor_rx` (because
it receives commands from the foward reactor), and in the forward
reactor we call it `backward_reactor_tx` (because it sends commands to
the backward reactor).
</content>
</entry>
<entry>
<title>proto: Rename chan senders and sinks for clarity</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:08:32Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f8332eda7d19136b76f58942bbb6c48c3df74070'/>
<id>urn:sha1:f8332eda7d19136b76f58942bbb6c48c3df74070</id>
<content type='text'>
We settled on

  * `inbound_chan{tx, rx}`, for the inbound channel (the channel towards
    the guard, if we are a client, or towards the client if we are a
    relay)
  * `outbound_chan{tx, rx}`, for the outbound channel (the channel
    towards the exit, if we are a middle relay)
</content>
</entry>
<entry>
<title>proto: Update misleading comment about cmd_rx</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:02:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=25a76fb5015d1bf81dbdf4844f9f852ca33e7e89'/>
<id>urn:sha1:25a76fb5015d1bf81dbdf4844f9f852ca33e7e89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>proto: Allow CircSynvView::new_relay() to be unused</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-27T11:12:10Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=98fe9a28e075cf2f3cc676e57800cc5c9aa72866'/>
<id>urn:sha1:98fe9a28e075cf2f3cc676e57800cc5c9aa72866</id>
<content type='text'>
This will change significantly in the near future, or disappear
entirely.
</content>
</entry>
<entry>
<title>proto: Replace relay reactor with new generic reactor</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-26T18:40:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=bc26b037e03cc7ae25b69e9e8ac99527c5fcb8b0'/>
<id>urn:sha1:bc26b037e03cc7ae25b69e9e8ac99527c5fcb8b0</id>
<content type='text'>
</content>
</entry>
</feed>
