<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/tor-cell/src/relaycell, branch arti-v0.0.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v0.0.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v0.0.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2021-05-26T23:18:35Z</updated>
<entry>
<title>Use the "typos" tool to fix some spelling</title>
<updated>2021-05-26T23:18:35Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-26T23:18:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7f681ac824d1ed4d2969e37003201323e6aada92'/>
<id>urn:sha1:7f681ac824d1ed4d2969e37003201323e6aada92</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Resolve clippy warnings from Rust 1.52.</title>
<updated>2021-05-07T19:53:17Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-07T19:53:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e01f22719111fdea8db8273eca716dbc16480935'/>
<id>urn:sha1:e01f22719111fdea8db8273eca716dbc16480935</id>
<content type='text'>
Rust 1.52 just came out, and there are new clippy lints to deal
with:

   * It spots more cases when we could use Option::map
   * It spots more cases when we could use Iterator::flatten
   * When we build a struct instance, it wants us to list the fields
     in the same order that the struct declares them.
</content>
</entry>
<entry>
<title>Use s.parse(), not u16::from_str_radix(s,10)</title>
<updated>2021-05-07T19:51:13Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-07T19:51:13Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d223c232d05ab898a86266c26ca7c542d0b987f9'/>
<id>urn:sha1:d223c232d05ab898a86266c26ca7c542d0b987f9</id>
<content type='text'>
Clippy started warning on this with Rust 1.52.  I'm fairly sure that
when I wrote this code I was worried that &lt;u16 as FromStr&gt;::parse()
might allow hex or something.  But fortunately, it doesn't work that
way, so I don't need to be paranoid here.
</content>
</entry>
<entry>
<title>Enforce (and obey) clippy lints about exhaustive enums, structs.</title>
<updated>2021-04-27T18:17:49Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-04-27T18:17:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2e3780affb54988bee60ab634a408dffd224cd3a'/>
<id>urn:sha1:2e3780affb54988bee60ab634a408dffd224cd3a</id>
<content type='text'>
These lints force us to declare our exported enums and
exhaustive-looking structs as non-exhaustive (so that we can add to
them in the future without breaking our API) or to explicitly
disable the warning for a given enum/struct (to say that we _intend_
for additions to be a breaking change).
</content>
</entry>
<entry>
<title>Fix Rust-1.51 clippy warnings about acronyms in camel case.</title>
<updated>2021-03-29T20:33:48Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-29T20:33:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3ad503866d5a6bab0a7774014579937c19c5d2c6'/>
<id>urn:sha1:3ad503866d5a6bab0a7774014579937c19c5d2c6</id>
<content type='text'>
This is painful, but we shouldn't have to do it again.
</content>
</entry>
<entry>
<title>Rename Rsa{Identity,Signature} to fix clippy warning.</title>
<updated>2021-03-29T20:14:43Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-29T20:14:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3800c459f6a8bbab465ff3afcd650b5c42a953c5'/>
<id>urn:sha1:3800c459f6a8bbab465ff3afcd650b5c42a953c5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Better management for END cells in streams.</title>
<updated>2021-03-10T20:02:34Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-10T20:02:34Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7b4ca6d954d022ff4fc03ca15242b67cc6191e81'/>
<id>urn:sha1:7b4ca6d954d022ff4fc03ca15242b67cc6191e81</id>
<content type='text'>
</content>
</entry>
<entry>
<title>clippy warning on msg.rs</title>
<updated>2021-03-04T16:54:14Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-04T16:54:14Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=95c71aff917fc412c127d71cf1f4e557d4031851'/>
<id>urn:sha1:95c71aff917fc412c127d71cf1f4e557d4031851</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change how we sort link specifiers in extend cells</title>
<updated>2021-03-04T16:13:22Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-04T16:13:22Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=564bf104d5e7e0ecc05cc2d680cfda3ba52b0a4f'/>
<id>urn:sha1:564bf104d5e7e0ecc05cc2d680cfda3ba52b0a4f</id>
<content type='text'>
Instead of implementing a dubious PartialOrd for link spec, add a
sorting function and call that explicitly.
</content>
</entry>
<entry>
<title>Avoid an is_some()/unwrap() pair in End cell parsing</title>
<updated>2021-03-04T16:12:35Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-04T16:12:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2c8a6de8ac2e58f9eea67a963eb6e922d9c0f040'/>
<id>urn:sha1:2c8a6de8ac2e58f9eea67a963eb6e922d9c0f040</id>
<content type='text'>
</content>
</entry>
</feed>
