<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/Cargo.lock, branch arti-v1.4.3</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.3</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.3'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-05-01T16:22:28Z</updated>
<entry>
<title>release: Update Cargo.lock files.</title>
<updated>2025-05-01T16:22:28Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-05-01T16:21:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d9a0f3764464bb7aa6c40ae4f8ff0df0b2007264'/>
<id>urn:sha1:d9a0f3764464bb7aa6c40ae4f8ff0df0b2007264</id>
<content type='text'>
</content>
</entry>
<entry>
<title>release: Bump arti to 1.4.3.</title>
<updated>2025-05-01T16:22:28Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-05-01T15:57:08Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0069db9fc3d89d409d168ac93dedc816da5b2a8b'/>
<id>urn:sha1:0069db9fc3d89d409d168ac93dedc816da5b2a8b</id>
<content type='text'>
```
cargo set-version --bump patch -p arti
```
</content>
</entry>
<entry>
<title>release: Bump all unstable tor/arti crates to 0.30.0</title>
<updated>2025-05-01T16:22:28Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-05-01T15:55:57Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=770aaa9648d42835b2c6b3b29f4051d287ddba88'/>
<id>urn:sha1:770aaa9648d42835b2c6b3b29f4051d287ddba88</id>
<content type='text'>
```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.30.0
done
```
</content>
</entry>
<entry>
<title>Update rand requirement to 0.9.1</title>
<updated>2025-04-29T22:52:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-04-29T19:04:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fc0810c1091b2ec606111ae94e726cf5f7b10b38'/>
<id>urn:sha1:fc0810c1091b2ec606111ae94e726cf5f7b10b38</id>
<content type='text'>
(This is going to be a _requirement_,
since rand 0.9.1 has a behavioral change from 0.9.0)
</content>
</entry>
<entry>
<title>Run cargo update.</title>
<updated>2025-04-29T21:35:34Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-04-29T17:30:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=54e3933f577548f10e01ae9e979ffb110481f9b4'/>
<id>urn:sha1:54e3933f577548f10e01ae9e979ffb110481f9b4</id>
<content type='text'>
I updated everything except rand, because the new version of rand
interacts with #1903, thus requiring more care.
</content>
</entry>
<entry>
<title>Upgrade dependencies.</title>
<updated>2025-04-29T21:35:30Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2025-04-29T16:39:34Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=89961f6d8e70aaef512b6ac05e6ddf43416c365d'/>
<id>urn:sha1:89961f6d8e70aaef512b6ac05e6ddf43416c365d</id>
<content type='text'>
Updates:

* hashlink 0.9.1 -&gt; 0.10.0
  * Updates hashbrown
* metrics-exporter-prometheus 0.16.2 -&gt; 0.17.0
  * Bumps deps
  * Minor API change

Not updated:

* rusqlite, due to MSRV incompatibility
* educe (#1257)
* hickroy-proto (https://github.com/hickory-dns/hickory-dns/issues/2956)
</content>
</entry>
<entry>
<title>proto: Implement CGO functions ET and PRF</title>
<updated>2025-04-29T16:34:57Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-04-14T20:44:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=bc04d424c95174e8fb1b849a970a37d8445e8664'/>
<id>urn:sha1:bc04d424c95174e8fb1b849a970a37d8445e8664</id>
<content type='text'>
These are a tweakable block cipher, and a pseudorandom byte stream.
This commit includes test vectors, which were generated from the
Python reference implementation and confirmed with a less optimized
Rust implementation.
</content>
</entry>
<entry>
<title>Replace signal-hook-async-std with async-signal to fix RUSTSEC-2024-0384</title>
<updated>2025-04-25T18:34:20Z</updated>
<author>
<name>Vijaya Bhaskar</name>
<email>vijayabhaskar.santhuluri@gmail.com</email>
</author>
<published>2025-04-25T18:34:20Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d07b475fb8588393379ccaae6a871de24c53143c'/>
<id>urn:sha1:d07b475fb8588393379ccaae6a871de24c53143c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-proto: only use congestion control if "flowctl-cc" feature is enabled</title>
<updated>2025-04-23T18:39:16Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-04-17T03:39:44Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ccb65961cc5a25c304b240a8cfa40d08c4569713'/>
<id>urn:sha1:ccb65961cc5a25c304b240a8cfa40d08c4569713</id>
<content type='text'>
Congestion control is not completely working correctly, and is not fully
implemented (XON/XOFF). This commit adds a new experimental "flowctl-cc"
feature to enable the congestion control extension during the ntor-v3
handshake.
</content>
</entry>
<entry>
<title>Merge branch 'proto_enforce' into 'main'</title>
<updated>2025-04-22T17:14:59Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-04-22T17:14:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=975e057791ee3d4874f164a9caf4a65af36a4158'/>
<id>urn:sha1:975e057791ee3d4874f164a9caf4a65af36a4158</id>
<content type='text'>
Enforce recommended and required protocol versions in arti-client

Closes #1849 and #1923

See merge request tpo/core/arti!2929</content>
</entry>
</feed>
