<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/hashx, branch arti-v2.3.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.3.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.3.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-03-30T19:25:59Z</updated>
<entry>
<title>Update Cargo.lock for hashx and equix</title>
<updated>2026-03-30T19:25:59Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2026-03-30T19:22:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5cff2e34387f8f86798e23e7875e7dace858bb0a'/>
<id>urn:sha1:5cff2e34387f8f86798e23e7875e7dace858bb0a</id>
<content type='text'>
Made with
  nailing-cargo -EE --subdir=crates/equix/bench -u fetch
  nailing-cargo -EE --subdir=crates/hashx/bench -u fetch

This is the minimal update; see
  https://gitlab.torproject.org/tpo/core/arti/-/issues/1984#note_3385367
</content>
</entry>
<entry>
<title>Bump versions: patchlevel, without dependencies</title>
<updated>2026-03-30T18:58:38Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2026-03-30T18:49:41Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=55571b1e5d203d58ff023ce5b35baf251c6f5b7d'/>
<id>urn:sha1:55571b1e5d203d58ff023ce5b35baf251c6f5b7d</id>
<content type='text'>
As per
  https://gitlab.torproject.org/tpo/core/arti/-/issues/2436#note_3384773

Made with
  maint/bump-nodep hashx equix fs-mistrust futures-copy
and then updating Cargo.lock.
</content>
</entry>
<entry>
<title>hashx: Bump dynasmrt to 5.0.0</title>
<updated>2026-03-04T10:46:30Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-03-03T18:28:46Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7435c2e7db92aded1c267201947f77f5d7dacdcf'/>
<id>urn:sha1:7435c2e7db92aded1c267201947f77f5d7dacdcf</id>
<content type='text'>
Contains a small code change as `bare_relocation()` was replaced with
`value_relocation()`.
</content>
</entry>
<entry>
<title>Run cargo update for {hashx,equix}/bench</title>
<updated>2026-03-02T17:41:14Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-03-02T17:41:14Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b2cfa215d341c1b5abe3b8ca85fe27cb17e54c6e'/>
<id>urn:sha1:b2cfa215d341c1b5abe3b8ca85fe27cb17e54c6e</id>
<content type='text'>
Done using

```
  (cd crates/hashx/bench &amp;&amp; cargo update)
  (cd crates/equix/bench &amp;&amp; cargo update)
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates</title>
<updated>2026-03-02T17:36:23Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-03-02T17:36:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d45c09c8e808c90c4fcb5416fd52c3c138b4871a'/>
<id>urn:sha1:d45c09c8e808c90c4fcb5416fd52c3c138b4871a</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
```

Because this release bumps the MSRV, I am bumping the minor version of all of
them.

MINOR="
oneshot-fused-workaround
slotmap-careful
test-temp-dir
fslock-guard
hashx
equix
caret
fs-mistrust
safelog
retry-error
futures-copy
"

for crate in $MINOR; do
    cargo set-version --bump minor -p $crate;
done
```
</content>
</entry>
<entry>
<title>hashx: Use .is_multiple_of() as recommended by clippy</title>
<updated>2026-02-16T15:22:24Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-02-09T12:37:22Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f637aa7288a5dd7263873ebbb101fc2c98510fe3'/>
<id>urn:sha1:f637aa7288a5dd7263873ebbb101fc2c98510fe3</id>
<content type='text'>
I'm applying the clippy suggestion, even though in this case, using
`is_multiple_of()` instead of `%` is a bit questionable IMO, because the
`% 3` operation can never panic.
</content>
</entry>
<entry>
<title>Allow clippy::collapsible_if to trigger</title>
<updated>2026-02-16T15:22:24Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-02-09T11:49:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ade1d59e8e44c93b6ee447b72a2948a9652ec44e'/>
<id>urn:sha1:ade1d59e8e44c93b6ee447b72a2948a9652ec44e</id>
<content type='text'>
`clippy::collapsible_if` started triggering after bumping the MSRV to
1.88.

Since this triggers from a lot of places, and since there even are a
couple of instances where we explicitly allow `clippy::collapsible_ifs`,
I've opened #2342 for deciding what to do about it.
</content>
</entry>
<entry>
<title>Bump MSRV from 1.86 to 1.89</title>
<updated>2026-02-16T15:22:24Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-02-09T11:29:39Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c48a2ba6771016e7c57f02cfb99d62c3e5b34bc4'/>
<id>urn:sha1:c48a2ba6771016e7c57f02cfb99d62c3e5b34bc4</id>
<content type='text'>
As agreed at our last team meeting.

See
https://gitlab.torproject.org/tpo/core/arti/#minimum-supported-rust-version
</content>
</entry>
<entry>
<title>Set package.metadata.docs.rs.all-features to true for all crates</title>
<updated>2026-02-09T00:23:51Z</updated>
<author>
<name>Niel Duysters</name>
<email>contact@ndvibes.com</email>
</author>
<published>2026-02-08T23:53:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b86cb559e1472688b3a5f705b76173cea4ab6f79'/>
<id>urn:sha1:b86cb559e1472688b3a5f705b76173cea4ab6f79</id>
<content type='text'>
Makes docs.rs also document types behind optional feature flags.
</content>
</entry>
<entry>
<title>release: Update hashx and equix benches.</title>
<updated>2026-02-02T17:21:21Z</updated>
<author>
<name>Wesley Aptekar-Cassels</name>
<email>me@wesleyac.com</email>
</author>
<published>2026-02-02T17:21:21Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fbfe1ec6677f2b6a881da4e0d9012e411c8139f8'/>
<id>urn:sha1:fbfe1ec6677f2b6a881da4e0d9012e411c8139f8</id>
<content type='text'>
</content>
</entry>
</feed>
