<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/fs-mistrust, branch arti-v1.2.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.2.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-03-04T12:24:40Z</updated>
<entry>
<title>Bump patchlevel (not dependents) on crates with trivial changes.</title>
<updated>2024-03-04T12:24:40Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-02-29T18:44:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6dc49da2126c5da00790de3892ff1ea49c542dc7'/>
<id>urn:sha1:6dc49da2126c5da00790de3892ff1ea49c542dc7</id>
<content type='text'>
This includes:
```
fs-mistrust
tor-linkspec
tor-chanmgr
```

Done with
```
./maint/bump_nodep fs-mistrust tor-linkspec tor-chanmgr
```
</content>
</entry>
<entry>
<title>educe: Use std's default for enums where default variant is unit</title>
<updated>2024-02-12T11:38:36Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-02-12T11:07:42Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c35c60f848154e80f23ba95a989ff2f9d2594e6a'/>
<id>urn:sha1:c35c60f848154e80f23ba95a989ff2f9d2594e6a</id>
<content type='text'>
Since Rust 1.66, std's default works properly for enums, provided that
the default variant is a unit.

Review all uses of `#[educe(default)]` on enums and replace them with
std where possible, which is most of them.

In 1.66 and later, std's `#[derive(Default)]` doesn't infer any
generic bounds on the derived impl, where it's an enum - since the
unit variant can always be constructed.  So this change doesn't add
any generic bounds and is not API-visible.
</content>
</entry>
<entry>
<title>Merge branch 'delete-semvers' into 'main'</title>
<updated>2024-02-05T16:51:38Z</updated>
<author>
<name>Ian Jackson</name>
<email>iwj@torproject.org</email>
</author>
<published>2024-02-05T16:51:38Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2f71ce50f1a7992d4b6c66de38786bfa2abc6bde'/>
<id>urn:sha1:2f71ce50f1a7992d4b6c66de38786bfa2abc6bde</id>
<content type='text'>
Remove all semver.md files to start a fresh release round

See merge request tpo/core/arti!1957</content>
</entry>
<entry>
<title>Bump patch versions *with* dependency update</title>
<updated>2024-02-05T16:20:53Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-02-05T16:20:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=97e284b90323dd3aeaf05839a00b801c2ee194f9'/>
<id>urn:sha1:97e284b90323dd3aeaf05839a00b801c2ee194f9</id>
<content type='text'>
This crate has had new features added.  It's 0.x.  So bump in-tree
dependencies' references:

  fs-mistrust
</content>
</entry>
<entry>
<title>Remove all semver.md files to start a fresh release round</title>
<updated>2024-02-05T15:27:50Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-02-05T15:27:21Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=760274c281779248528e8a23c986503b32e81fd8'/>
<id>urn:sha1:760274c281779248528e8a23c986503b32e81fd8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fs_mistrust: Provide CheckedDir::make_secure_dir</title>
<updated>2024-01-29T11:15:12Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-01-25T18:57:50Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=98c82bd4285239ea452e765913cfef6b3c2ccb66'/>
<id>urn:sha1:98c82bd4285239ea452e765913cfef6b3c2ccb66</id>
<content type='text'>
state_dir wants this, to descend into subdirectories.

I think the implementation could be improved - see the TODO.
</content>
</entry>
<entry>
<title>fs_mistrust: Expose CheckedDir::verifier</title>
<updated>2024-01-25T19:11:17Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-01-25T19:11:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=73a23394ec3b3e2da2a935f831deda27100b0e65'/>
<id>urn:sha1:73a23394ec3b3e2da2a935f831deda27100b0e65</id>
<content type='text'>
I'm not sure why this isn't public.  It seems like an obviously
reasonable transformation.

If I as author of !1927 had been an external contributor, I could have
worked around the lack of .make_secure_directory() if .verifier() had
existed.  So I think exposing it would be useful.
</content>
</entry>
<entry>
<title>Patchlevel version bumps in preparation for 1.1.12.</title>
<updated>2024-01-09T13:11:17Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-01-09T13:07:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ef150707800e7aba78948f0b5dc5a2dcefaf62b6'/>
<id>urn:sha1:ef150707800e7aba78948f0b5dc5a2dcefaf62b6</id>
<content type='text'>
This crate doesn't have a meaningful public API, so it just gets a patchlevel bump:

    arti

These crates had nonbreaking changes, and get a patchlevel bump:

    tor-rtcompat
    fs-mistrust
    tor-llcrypto
    tor-cert
</content>
</entry>
<entry>
<title>fs-mistrust: Explain where a Verifier comes from</title>
<updated>2023-12-13T17:02:45Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2023-12-07T15:42:46Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=93c664440a551f37cac4f975e10683c7d4c10de2'/>
<id>urn:sha1:93c664440a551f37cac4f975e10683c7d4c10de2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>upgrade to toml 0.8.8</title>
<updated>2023-12-05T13:20:09Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-12-05T13:20:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=30fa68ab489679afbbe707e8ac3d166ee50dda93'/>
<id>urn:sha1:30fa68ab489679afbbe707e8ac3d166ee50dda93</id>
<content type='text'>
</content>
</entry>
</feed>
