<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/examples/gsoc2023/obfs4-checker, branch arti-v1.6.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.6.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.6.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-10-02T15:17:55Z</updated>
<entry>
<title>release: Bump versions in examples/ and maint/</title>
<updated>2025-10-02T15:17:55Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-10-02T15:06:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c71b2076b2b59276b4866aab4e7c671232072ccf'/>
<id>urn:sha1:c71b2076b2b59276b4866aab4e7c671232072ccf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>release: Run fixup-features.</title>
<updated>2025-10-01T18:36:58Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-10-01T15:42:03Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=9792d6af3c156453cb4c2df9a212bf99c813a109'/>
<id>urn:sha1:9792d6af3c156453cb4c2df9a212bf99c813a109</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Require tracing-subscriber 0.3.20</title>
<updated>2025-09-02T12:53:23Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-09-02T12:53:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e06be9ae33b9f9cd494cd5d3ce51034ee1ae9451'/>
<id>urn:sha1:e06be9ae33b9f9cd494cd5d3ce51034ee1ae9451</id>
<content type='text'>
Fixes RUSTSEC-2025-0055.
</content>
</entry>
<entry>
<title>Switch Cargo.toml files to edition 2024.</title>
<updated>2025-08-07T15:28:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-06T01:19:58Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=77b0de43b8c67cdb81befe0680a3df43b6ad37bc'/>
<id>urn:sha1:77b0de43b8c67cdb81befe0680a3df43b6ad37bc</id>
<content type='text'>
First, run

```
git grep -l "^edition =" |
    xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;'
```

Second, manually verify that all Cargo.toml files have changed,
and nothing else has changed.

Third, run cargo fmt again.
</content>
</entry>
<entry>
<title>obfs4-checker: do not enable tor-proto/experimental.</title>
<updated>2025-08-06T15:55:19Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-06T15:55:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a2d06cf94f2d09077bb86f1b7b62e7e22c4a34f1'/>
<id>urn:sha1:a2d06cf94f2d09077bb86f1b7b62e7e22c4a34f1</id>
<content type='text'>
1. In general, it is always wrong to unconditionally depend on
   "experimental".  Instead, a crate should depend on the particular
   experimental features it needs (if any).

2. obfs4-checker does not appear to need tor-proto/experimental
   any longer.
</content>
</entry>
<entry>
<title>examples, fixup-features: use inline vars in format string</title>
<updated>2025-05-29T14:21:17Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-05-21T14:04:15Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=9c7fe185eac90b75ce3c0d4c58be53e7882e4025'/>
<id>urn:sha1:9c7fe185eac90b75ce3c0d4c58be53e7882e4025</id>
<content type='text'>
Nightly clippy now suggests this.
</content>
</entry>
<entry>
<title>./maint/cargo_sort: Run cargo-sort on the entire workspace.</title>
<updated>2025-05-27T13:32:26Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-05-23T13:54:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=03885fdbf4ea19b9215e05cc557372758359f44d'/>
<id>urn:sha1:03885fdbf4ea19b9215e05cc557372758359f44d</id>
<content type='text'>
The [latest version] of `cargo-sort` is more opinionated than the
previous one, and is now causing the `rust-checks` job to fail on
`main`.

This commit applies the fixes needed to satisfy the new `cargo-sort`
rules. These changes were generated by running `cargo sort --workspace`
several times, until `cargo sort --check --workspace` finally succeeded
(it couldn't fix all the errors in one go, for some reason).

I have omitted the changes `cargo-sort` made to the top-level
`Cargo.toml`, to preserve the topological ordering of the workspace
members.

Closes #2014

[latest version]: https://github.com/DevinR528/cargo-sort/blob/f066ae80e5e6f5c1d8f0e2b8099461dcb97d9656/changelog.md#200
</content>
</entry>
<entry>
<title>Upgrade to axum 8</title>
<updated>2025-02-05T16:42:13Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-02-05T16:41:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d03a291e32fe5ede980c28f0182da76b6c8a534b'/>
<id>urn:sha1:d03a291e32fe5ede980c28f0182da76b6c8a534b</id>
<content type='text'>
We use this in an example only.
</content>
</entry>
<entry>
<title>tor-proto: Plumb the ChannelAccount through to queue creation site</title>
<updated>2024-10-03T14:10:47Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-10-02T16:24:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=939d291ed3792a5fd1392f4e2816de254ac1bc12'/>
<id>urn:sha1:939d291ed3792a5fd1392f4e2816de254ac1bc12</id>
<content type='text'>
This gets it as far as the outbound circuit-&gt;channel mpsc queue creation.
Also, we provide an accessor for it.
</content>
</entry>
<entry>
<title>tor-proto: Plumb the ChannelAccount through to queue creation site (pre-fmt)</title>
<updated>2024-10-03T14:10:35Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-10-02T15:32:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=17f55b3302cb254506f0ce2a3421211b55eb5bc4'/>
<id>urn:sha1:17f55b3302cb254506f0ce2a3421211b55eb5bc4</id>
<content type='text'>
</content>
</entry>
</feed>
