<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/hashx, branch arti-v1.5.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.5.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.5.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-08-28T17:50:27Z</updated>
<entry>
<title>Update lockfiles in equix, hashx.</title>
<updated>2025-08-28T17:50:27Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-28T17:50:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d67c332fc06b6ddebd047ec0881fd2926398c470'/>
<id>urn:sha1:d67c332fc06b6ddebd047ec0881fd2926398c470</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump the minor version of every published crate except for `arti`.</title>
<updated>2025-08-28T16:28:38Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-28T16:28:38Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=27d2e61733c617985284870002ded86dfb3b6cab'/>
<id>urn:sha1:27d2e61733c617985284870002ded86dfb3b6cab</id>
<content type='text'>
Per policy, we bump the minor version of every tor-*, arti-* crate
on each release.

We have updated our MSRV, so we're treating this as a breaking
change for our non-(arti/tor)-prefixed crates too.
</content>
</entry>
<entry>
<title>Run "cargo update" in preparation for release.</title>
<updated>2025-08-28T12:24:42Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-28T12:24:42Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b760d7e7cc41df49599ab3bba1b1f63945455f8d'/>
<id>urn:sha1:b760d7e7cc41df49599ab3bba1b1f63945455f8d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Upgrade to criterion 0.7</title>
<updated>2025-08-28T00:19:42Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-27T23:55:00Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1d79b0db3db48c9691952b3cce5b767cdc35851e'/>
<id>urn:sha1:1d79b0db3db48c9691952b3cce5b767cdc35851e</id>
<content type='text'>
Closes #2026.

We can do this now that criterion-cycles-per-byte has also upgraded.
</content>
</entry>
<entry>
<title>Rename variables named "gen"</title>
<updated>2025-08-07T15:28:39Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-06T02:01:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=9da44e30b2b61e80ca8cc89db272d9406347385d'/>
<id>urn:sha1:9da44e30b2b61e80ca8cc89db272d9406347385d</id>
<content type='text'>
This is now a reserved identifier.  The automatic migration
changed it to a raw identifier (`r#gen`), but it's better to use a
different name.
</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>Update code for Edition 2024</title>
<updated>2025-08-07T15:28:31Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-07T12:44:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0453fb4be8cf618b94230812957ce1db1afe74bd'/>
<id>urn:sha1:0453fb4be8cf618b94230812957ce1db1afe74bd</id>
<content type='text'>
1. Run cargo fix --edition

2. Selectively revert the "if let"-&gt;"match" changes.
   These changes are meant to protect us from the lifetime changes
   for "if let" bindings in Rust 2024.
   But we're not actually relying on the old lifetime rules
   anywhere, and the match syntax here is quite ugly.

3. Automatically revert `$pat:expr_2021` to `$pat:expr`.
   (We don't actually want to restrict the expression syntax
   that our macros accept).
   Done with
   `git grep -l expr_2021 | xargs perl -i -pe 's/expr_2021/expr/g;'`

4. Run cargo fmt.
</content>
</entry>
<entry>
<title>Bump to hex-literal 1.0</title>
<updated>2025-08-05T20:29:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-05T20:29:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=da6e2ed53c3f752b188458c8e0c597f5cd5730d3'/>
<id>urn:sha1:da6e2ed53c3f752b188458c8e0c597f5cd5730d3</id>
<content type='text'>
(We were unable to do this before, since it required a rust version
we didn't have.)
</content>
</entry>
<entry>
<title>Set MSRV to 1.85.</title>
<updated>2025-08-05T19:47:14Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-05T19:47:14Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b96d16a9ff7ee01a4356ffaf32a3bc11086ebe88'/>
<id>urn:sha1:b96d16a9ff7ee01a4356ffaf32a3bc11086ebe88</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update hashx-bench lockfile</title>
<updated>2025-08-05T12:10:19Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-08-05T12:10:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8e58f003671c19edeaeea58c12f3f210a3fe6989'/>
<id>urn:sha1:8e58f003671c19edeaeea58c12f3f210a3fe6989</id>
<content type='text'>
cd crates/hashx/bench &amp;&amp; cargo update
</content>
</entry>
</feed>
