<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-proto/Cargo.toml, 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>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>tor-proto: add `Notify{Sender,Receiver}` channel</title>
<updated>2025-06-23T20:36:57Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-06-23T20:34:15Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a3eb63512c7efd373b513aa2eabae6a2ec0ad0bf'/>
<id>urn:sha1:a3eb63512c7efd373b513aa2eabae6a2ec0ad0bf</id>
<content type='text'>
An async notification channel.

This uses `postage::watch::{Sender,Receiver}` internally.
</content>
</entry>
<entry>
<title>tor-proto: make `visibility` dependency always available</title>
<updated>2025-06-16T19:19:37Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-06-09T17:26:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=74b216b0bb7a4b82afbea14b4b7060f2970e04e3'/>
<id>urn:sha1:74b216b0bb7a4b82afbea14b4b7060f2970e04e3</id>
<content type='text'>
`RateLimitedWriter` will use this in a future commit.
</content>
</entry>
<entry>
<title>tor-proto: Replace LegId/LegIdKey with UniqId.</title>
<updated>2025-06-13T16:13:45Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-06-13T15:33:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=9010b0459a10b70e659007d44b58cb9d6dbb5507'/>
<id>urn:sha1:9010b0459a10b70e659007d44b58cb9d6dbb5507</id>
<content type='text'>
Closes #1999
</content>
</entry>
<entry>
<title>Merge branch 'criterion-fix-aarch64' into 'main'</title>
<updated>2025-06-09T18:27:44Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-06-09T18:27:44Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2323e8324e27ad428d3c5cc5e5976ac719448c6e'/>
<id>urn:sha1:2323e8324e27ad428d3c5cc5e5976ac719448c6e</id>
<content type='text'>
proto: Let benchmarks build correctly on non-intel

Closes #2029

See merge request tpo/core/arti!3032</content>
</entry>
<entry>
<title>Run cargo sort on tor-proto</title>
<updated>2025-06-09T17:03:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-06-09T17:03:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d1a5130d980e745c45e4edabdfcdcd919b63ec3c'/>
<id>urn:sha1:d1a5130d980e745c45e4edabdfcdcd919b63ec3c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>proto: Let benchmarks build correctly on non-intel</title>
<updated>2025-06-09T16:01:12Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-06-09T15:58:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ea33426279fa0b55acf804147e5f719b6541c99f'/>
<id>urn:sha1:ea33426279fa0b55acf804147e5f719b6541c99f</id>
<content type='text'>
(criterion-cycles-per-byte, though quite helpful,
doesn't work on non-intel CPUs)

Closes #2029.
</content>
</entry>
<entry>
<title>tor-cell: add experimental `flowctl-cc` feature</title>
<updated>2025-06-09T13:47:45Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-06-09T13:47:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=49f1f909e56b85f75d011474f2e49d384cd5a0b7'/>
<id>urn:sha1:49f1f909e56b85f75d011474f2e49d384cd5a0b7</id>
<content type='text'>
</content>
</entry>
</feed>
