<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/arti-relay/Cargo.toml, branch arti-v1.8.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.8.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.8.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-12-02T11:07:59Z</updated>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.37.0.</title>
<updated>2025-12-02T11:07:59Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-12-02T10:58:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e7d740eda02e05dd53574b6753cc4b45ab160b58'/>
<id>urn:sha1:e7d740eda02e05dd53574b6753cc4b45ab160b58</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.37.0
done
</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>Run fixup-features in preparation for release</title>
<updated>2025-12-01T11:37:17Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-12-01T11:37:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8f6ce316e35289d68ee585d151870dd9d0949c2d'/>
<id>urn:sha1:8f6ce316e35289d68ee585d151870dd9d0949c2d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>arti-relay: listen at configured OR ports</title>
<updated>2025-11-13T03:39:13Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-11-13T03:32:20Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ea4cd74167190215009f278fa8b1c0de8d277357'/>
<id>urn:sha1:ea4cd74167190215009f278fa8b1c0de8d277357</id>
<content type='text'>
</content>
</entry>
<entry>
<title>arti-relay: add OR port listener task</title>
<updated>2025-11-05T19:30:38Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-10-28T04:50:13Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4f900473bac1947c8c422d0f932b793b38c47842'/>
<id>urn:sha1:4f900473bac1947c8c422d0f932b793b38c47842</id>
<content type='text'>
This does not yet get the OR port from the config, and the channel
manager doesn't yet do anything with the incoming connection.
</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>maint: fixup features</title>
<updated>2025-10-28T17:23:28Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-10-28T17:23:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0879baae57f42642ca11db8391697088ab053344'/>
<id>urn:sha1:0879baae57f42642ca11db8391697088ab053344</id>
<content type='text'>
```bash
cargo run -p fixup-features -- --exclude examples/ --exclude maint/ Cargo.toml
```
</content>
</entry>
<entry>
<title>arti-relay: use `Void` for `TorRelay::run`</title>
<updated>2025-10-27T15:32:16Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-10-27T15:30:42Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2e0cb761548f5e99c0bbd4eece0f9643944b95e2'/>
<id>urn:sha1:2e0cb761548f5e99c0bbd4eece0f9643944b95e2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>arti-relay: initialize the `StateDirectory` and `FsStateMgr`</title>
<updated>2025-10-21T19:53:14Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-10-20T01:39:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=038bf65e4da6184049950227002f4f8d8e05cdd2'/>
<id>urn:sha1:038bf65e4da6184049950227002f4f8d8e05cdd2</id>
<content type='text'>
</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>
</feed>
