<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/Cargo.toml, 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-31T16:11:58Z</updated>
<entry>
<title>Introduce maint/dependencies-bodge crate</title>
<updated>2026-03-31T16:11:58Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2026-03-31T12:03:28Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=63d5e5b8d68e7cf87d9d2fa9a9eadaef9b524bcf'/>
<id>urn:sha1:63d5e5b8d68e7cf87d9d2fa9a9eadaef9b524bcf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a new web-time-compat crate.</title>
<updated>2026-03-26T19:20:16Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2026-03-26T12:28:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=418d4b802c4fa269b2e47b7405c04fb72ff2f146'/>
<id>urn:sha1:418d4b802c4fa269b2e47b7405c04fb72ff2f146</id>
<content type='text'>
This crate provides a compatibility layer in front of web-time,
which will serve three purposes:

1. Saving us from having to build web_time when we don't need it.

   (This is mainly aesthetic.)

2. Allowing us to continue to use std::time::SystemTime to represent
   our wall-clock times and dates.

   This is fairly valuable, since we use a bunch of external crates
   that expect std::time::SystemTime inputs and don't want a
   web_time::SystemTime.

3. Add extension methods to web_time::Instant and std::time::Instant
   so that we can enforce the use of web_time::Instant by
   disallowing std::time::Instant::now().

   (We can't just use the same trick as in (2) to use
   std::time::Instant everywhere, since there is no way to convert a
   web_time::Instant to a std::time::Instant.)
</content>
</entry>
<entry>
<title>Cargo.toml: Re-order crates so that tor-rtcompat can depend on tor-cert</title>
<updated>2026-02-02T15:02:22Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2026-01-29T17:10:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3531af9b14757ced9176015c56d4bcb5e723f61f'/>
<id>urn:sha1:3531af9b14757ced9176015c56d4bcb5e723f61f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>memquota: Extract HasMemoryCost and derive to new crate.</title>
<updated>2026-02-02T15:02:22Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2026-01-29T16:16:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d53a4d6791ea1e7a0bc1510fb129928c2746be5b'/>
<id>urn:sha1:d53a4d6791ea1e7a0bc1510fb129928c2746be5b</id>
<content type='text'>
This will help resolve some dependencies in our graph.
</content>
</entry>
<entry>
<title>cert: Extract x509 code into new tor-cert-x509 crate.</title>
<updated>2026-02-02T15:02:22Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2026-01-29T15:30:38Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=44e57f9709cbdb2bbd6e2b7de3a08725feb27917'/>
<id>urn:sha1:44e57f9709cbdb2bbd6e2b7de3a08725feb27917</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add integration test suite for `hsc ctor-migrate` subcommand</title>
<updated>2026-02-02T10:39:45Z</updated>
<author>
<name>hjrgrn</name>
<email>3874-hjrgrn@gitlab.torproject.org</email>
</author>
<published>2026-02-02T10:39:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c766510282cbebfb1fc7a1f98bcb0b3ebf6c2af3'/>
<id>urn:sha1:c766510282cbebfb1fc7a1f98bcb0b3ebf6c2af3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>New futures-copy crate to replace copy_interactive.</title>
<updated>2025-10-28T19:56:30Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-10-23T14:53:37Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=eae779893db7cd35fde6f17d3062f026679204b1'/>
<id>urn:sha1:eae779893db7cd35fde6f17d3062f026679204b1</id>
<content type='text'>
This crate's API is loosely based on some of tokio's functions,
and its implementation strategy is loosely based on
futures::io::copy.

It's designed to be generally useful outside of the arti ecosystem.

Should help with the original challenge of #786.
</content>
</entry>
<entry>
<title>relay: Move crate around Cargo.toml for check_toposort</title>
<updated>2025-10-23T17:47:06Z</updated>
<author>
<name>David Goulet</name>
<email>dgoulet@torproject.org</email>
</author>
<published>2025-10-23T16:56:15Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ade372129c04c410f955493a0c3281bb7d79b452'/>
<id>urn:sha1:ade372129c04c410f955493a0c3281bb7d79b452</id>
<content type='text'>
Signed-off-by: David Goulet &lt;dgoulet@torproject.org&gt;
</content>
</entry>
<entry>
<title>Merge branch 'note-about-resolver' into 'main'</title>
<updated>2025-09-12T01:15:07Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-09-12T01:15:07Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5c7d6df3f0752317c9cfc19ea52549a94c78a294'/>
<id>urn:sha1:5c7d6df3f0752317c9cfc19ea52549a94c78a294</id>
<content type='text'>
Add comment about why we need a manual "resolver" entry.

See merge request tpo/core/arti!3202</content>
</entry>
<entry>
<title>Move `FallbackDir` into `tor-dircommon`</title>
<updated>2025-09-11T17:53:40Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2025-09-11T17:53:40Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=144cb860535273fed072a1ef6bc5684cf36ac31b'/>
<id>urn:sha1:144cb860535273fed072a1ef6bc5684cf36ac31b</id>
<content type='text'>
</content>
</entry>
</feed>
