<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/tor-netdoc/src/doc/routerdesc.rs, 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>Prefer "relay" over "router" in docs and APIs.</title>
<updated>2021-05-18T14:58:12Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-18T14:58:12Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e2139e8afc08beb7d7572efbed7cf59ffa65e22e'/>
<id>urn:sha1:e2139e8afc08beb7d7572efbed7cf59ffa65e22e</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>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>Move RdDigest to routerdesc.rs</title>
<updated>2021-03-30T18:20:35Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-30T18:20:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8efe0f755388eea147266cfb8d9dfbd96ee950ab'/>
<id>urn:sha1:8efe0f755388eea147266cfb8d9dfbd96ee950ab</id>
<content type='text'>
</content>
</entry>
<entry>
<title>dir: Add server descriptor directory request</title>
<updated>2021-03-30T18:15:51Z</updated>
<author>
<name>David Goulet</name>
<email>dgoulet@torproject.org</email>
</author>
<published>2021-03-30T13:23:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e685ddee84a101daf35d52b4f0ef31b218092fd2'/>
<id>urn:sha1:e685ddee84a101daf35d52b4f0ef31b218092fd2</id>
<content type='text'>
Signed-off-by: David Goulet &lt;dgoulet@torproject.org&gt;
</content>
</entry>
<entry>
<title>Fix a bunch more new clippy lints in Rust 1.51</title>
<updated>2021-03-29T20:45:45Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-29T20:45:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d52ff18b4652da4744d1742fae8ea41526eed89d'/>
<id>urn:sha1:d52ff18b4652da4744d1742fae8ea41526eed89d</id>
<content type='text'>
The major types are:
  * You implemented Into when you should have implemented From.
  * You sliced a slice when you didn't have to.
  * You said Ok(x?) when you could have said x.
  * You said Vec::new(); push(); push(); when you could have said vec![].
</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>Use interned PortPolicy objects in RouterDescs too.</title>
<updated>2021-03-29T15:11:01Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-03-29T15:11:01Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=80e9785fa3ab30819c29b19c8c481b52308280a1'/>
<id>urn:sha1:80e9785fa3ab30819c29b19c8c481b52308280a1</id>
<content type='text'>
</content>
</entry>
</feed>
