<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/arti-rpc-client-core/src/msgs, branch arti-v2.1.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.1.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.1.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-02-04T14:04:52Z</updated>
<entry>
<title>rpc: Clean up pub items in nb_stream.</title>
<updated>2026-02-04T14:04:52Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2026-02-04T14:02:37Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0a50351d0d3981d22f76507b88c314d95facd5a9'/>
<id>urn:sha1:0a50351d0d3981d22f76507b88c314d95facd5a9</id>
<content type='text'>
(We don't need as many of these to be public as I had originally
thought.)
</content>
</entry>
<entry>
<title>Fix name of clippy lint to unchecked_time_subtraction (2)</title>
<updated>2025-11-06T11:28:22Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2025-11-06T11:23:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a5fd5c48ea059a80cc1f6c50e248654b5ff3aaff'/>
<id>urn:sha1:a5fd5c48ea059a80cc1f6c50e248654b5ff3aaff</id>
<content type='text'>
Run maint/add_warning
</content>
</entry>
<entry>
<title>Switch Cargo.toml files to edition 2024.</title>
<updated>2025-08-07T15:28:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-08-06T01:19:58Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=77b0de43b8c67cdb81befe0680a3df43b6ad37bc'/>
<id>urn:sha1:77b0de43b8c67cdb81befe0680a3df43b6ad37bc</id>
<content type='text'>
First, run

```
git grep -l "^edition =" |
    xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;'
```

Second, manually verify that all Cargo.toml files have changed,
and nothing else has changed.

Third, run cargo fmt again.
</content>
</entry>
<entry>
<title>rpc-client: Increase test coverage for the msgs module</title>
<updated>2025-03-18T16:08:23Z</updated>
<author>
<name>vcrn</name>
<email>3893-vcrn@gitlab.torproject.org</email>
</author>
<published>2025-03-18T16:08:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e70fa298389e99183ff400726bf31e578c3d44c6'/>
<id>urn:sha1:e70fa298389e99183ff400726bf31e578c3d44c6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rpclib: Obey error Display convention wrt sources.</title>
<updated>2025-02-04T19:41:15Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-02-04T15:20:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c8f614faf5084c300a71b6e607a0b189df8830da'/>
<id>urn:sha1:c8f614faf5084c300a71b6e607a0b189df8830da</id>
<content type='text'>
In general, we try to obey the convention that an error's Display
method does not display that error's sources.

Part of #1650.
</content>
</entry>
<entry>
<title>Implement banner for RPC protocol.</title>
<updated>2025-01-09T21:26:33Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-01-08T15:06:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fdf77750dcaa256c095daf6eb123129b8fd757b0'/>
<id>urn:sha1:fdf77750dcaa256c095daf6eb123129b8fd757b0</id>
<content type='text'>
Closes #1753
</content>
</entry>
<entry>
<title>rpclib: Rename ParsedRequest to ParsedRequestFields</title>
<updated>2024-08-07T12:21:28Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-08-06T14:07:07Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c05d234ced1e126ae975314484dd409c98f2f983'/>
<id>urn:sha1:c05d234ced1e126ae975314484dd409c98f2f983</id>
<content type='text'>
This name change should emphasize that the (module-private)
`ParsedRequestFields` type is only for parsing, and we aren't
supposed to actually construct them for our own requests.

With this change, and the others on the branch, there's no longer a
risk of trying to serialize a ParsedRequestFields (since it doesn't
implement Serialize), or to deserialize a Request (since it doesn't
implement Deserialize).

Closes #1511.
</content>
</entry>
<entry>
<title>rpclib: Use JsonValue to re-encode requests.</title>
<updated>2024-08-07T12:21:28Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-08-06T14:02:55Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=46c06e389ff71f819751001b916f509689acab4a'/>
<id>urn:sha1:46c06e389ff71f819751001b916f509689acab4a</id>
<content type='text'>
As with responses, we previously used a strategy that could have
failed in the future, if we forgot to add an "unexpected_fields"
member to one of our structs.

Closes #1512.
</content>
</entry>
<entry>
<title>rpclib: Unify error type for ValidatedRequest failure.</title>
<updated>2024-08-07T12:21:28Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-08-06T13:05:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5756400a33f1a4e35d676aaa90bad69ac34aaab2'/>
<id>urn:sha1:5756400a33f1a4e35d676aaa90bad69ac34aaab2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rpclib: Refactor request canonicalization</title>
<updated>2024-08-07T12:21:28Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-08-06T12:50:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2eaa2dc0c902411b83365e9e2f11da268f98a8fd'/>
<id>urn:sha1:2eaa2dc0c902411b83365e9e2f11da268f98a8fd</id>
<content type='text'>
This lets us make a couple of types module-private,
and prepares the way for using the serde_json::Value trick on
requests too.
</content>
</entry>
</feed>
