<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-rtcompat/Cargo.toml, branch arti-v1.4.5</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.5</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.5'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-07-07T17:41:41Z</updated>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.32.0.</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:26:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=721568b1bf261f6635c61c9f3abe52e24af1bf9c'/>
<id>urn:sha1:721568b1bf261f6635c61c9f3abe52e24af1bf9c</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.32.0
done
```
</content>
</entry>
<entry>
<title>tor-rtcompat: Remove rustls dependency in favor of futures-rustls</title>
<updated>2025-06-05T23:30:29Z</updated>
<author>
<name>parazyd</name>
<email>parazyd@dyne.org</email>
</author>
<published>2025-04-16T12:20:44Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0be3897e83e3beca92cb3441b063e163c9c8019c'/>
<id>urn:sha1:0be3897e83e3beca92cb3441b063e163c9c8019c</id>
<content type='text'>
futures-rustls provides and re-exports rustls and thus the rustls
dependency is redundant.

Additionally, this removes `aws-lc-rs` and its inherent dependencies
from `Cargo.lock` and the entire project since they've been included
because the rustls dependency did not use `default-features = false`
and rustls by default now depends on `aws-lc-rs` as its crypto engine.
</content>
</entry>
<entry>
<title>release: Bump all tor-/arti- crates to 0.31.0.</title>
<updated>2025-06-05T10:33:57Z</updated>
<author>
<name>Alexander Hansen Færøy</name>
<email>ahf@torproject.org</email>
</author>
<published>2025-06-05T10:33:57Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=95180f80d7ab574a95368f3bca1e7b78555d479a'/>
<id>urn:sha1:95180f80d7ab574a95368f3bca1e7b78555d479a</id>
<content type='text'>
This was done using:

for crate in $(./maint/list_crates | grep -P '^tor-|^arti-'); do
        cargo set-version -p $crate 0.31.0
done
</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>All crates: bump rust-version to 1.83.</title>
<updated>2025-05-13T18:46:28Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-05-13T18:46:28Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=88e911acd4bb70bf1da0fc71d77b51cb6abde478'/>
<id>urn:sha1:88e911acd4bb70bf1da0fc71d77b51cb6abde478</id>
<content type='text'>
</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>tor-rtcompat: Avoid wildcard dependency requirements.</title>
<updated>2025-04-01T10:13:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-04-01T10:13:21Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3ce3c2f4aeea2515db6473c6fe30ab90eeb197d8'/>
<id>urn:sha1:3ce3c2f4aeea2515db6473c6fe30ab90eeb197d8</id>
<content type='text'>
This is preventing us from publishing `tor-rtcompat`:

&gt; error: failed to publish to registry at https://crates.io
&gt;
&gt; Caused by:
&gt;   the remote server responded with an error (status 400 Bad Request): wildcard (`*`) dependency constraints are not allowed on crates.io. Crate with this problem: `hex` See https://doc.rust-lang.org/cargo/faq.html#can-libraries-use--as-a-version-for-their-dependencies for more information
</content>
</entry>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.29.0.</title>
<updated>2025-03-31T17:59:51Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-31T17:34:50Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1be579f99a7c0784bd7710f9ee6ee9a6b10c85df'/>
<id>urn:sha1:1be579f99a7c0784bd7710f9ee6ee9a6b10c85df</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.29.0
done
```
</content>
</entry>
<entry>
<title>Upgrade rustls-wekpki dependency to 0.103.1.</title>
<updated>2025-03-27T14:32:25Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-27T11:56:32Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0cee4a47625c5840003bbd81164adf4f004cb7c8'/>
<id>urn:sha1:0cee4a47625c5840003bbd81164adf4f004cb7c8</id>
<content type='text'>
We aren't affected by any of the breaking changes from [0.103.0].

[0.103.0]: https://github.com/rustls/webpki/releases/tag/v%2F0.103.0
</content>
</entry>
<entry>
<title>Merge branch 'x509-signature-yeet' into 'main'</title>
<updated>2025-03-05T13:50:08Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-05T13:50:08Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f880d8c4bea2cd82aba325b82bb68878bb769e97'/>
<id>urn:sha1:f880d8c4bea2cd82aba325b82bb68878bb769e97</id>
<content type='text'>
Switch from x509-signature to rustls-webpki when using rustls.

Closes #1824 and #1854

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