<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-rpcbase, branch arti-v1.2.3</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.3</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.3'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-04-30T12:01:10Z</updated>
<entry>
<title>Bump versions of 0.x tor-* and arti-* crates</title>
<updated>2024-04-30T12:01:10Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-30T11:59:55Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5f74f115c9b9ad585a9ae24ab7f98a13ba73d704'/>
<id>urn:sha1:5f74f115c9b9ad585a9ae24ab7f98a13ba73d704</id>
<content type='text'>
for p in `cat ../u`; do cargo set-version --locked --offline -p $p; done

where u contains

tor-basic-utils
tor-async-utils
tor-error
tor-config
tor-units
tor-geoip
tor-rtcompat
tor-rtmock
tor-log-ratelim
tor-rpcbase
tor-memquota
tor-llcrypto
tor-protover
tor-bytes
tor-hscrypto
tor-socksproto
tor-checkable
tor-cert
tor-linkspec
tor-cell
tor-proto
tor-netdoc
tor-consdiff
tor-netdir
tor-relay-selection
tor-persist
tor-chanmgr
tor-ptmgr
tor-guardmgr
tor-circmgr
tor-dirclient
tor-dirmgr
tor-keymgr
tor-hsclient
tor-hsservice
tor-hsrproxy
arti-client
arti-rpcserver
arti-hyper
</content>
</entry>
<entry>
<title>tor-rpcbase: Add a missing `#[doc(hidden)]`</title>
<updated>2024-04-29T14:54:49Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-29T14:54:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c46715f3b5c403ad3fe4956e40d25884f3e793e6'/>
<id>urn:sha1:c46715f3b5c403ad3fe4956e40d25884f3e793e6</id>
<content type='text'>
As per
  https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/2103#note_3024372

I overlooked this.
</content>
</entry>
<entry>
<title>tor-rpcbase: invoker_ent!: simplify argument parsing</title>
<updated>2024-04-25T14:25:30Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-25T14:03:46Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=406ffe929dfd0a89d007d6614a1d579bcd0d6c1a'/>
<id>urn:sha1:406ffe929dfd0a89d007d6614a1d579bcd0d6c1a</id>
<content type='text'>
Previously, one of the macros was documented to accept
`(function_expr)`, but in fact it would only accept an identifier.
Now we *do* accept any expression.
</content>
</entry>
<entry>
<title>tor-rpcbase: invoker_ent!: abolish flags argument</title>
<updated>2024-04-25T14:25:30Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-25T14:15:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=73ea1ff4373d50625e4bcdc2ec3ab6984e528fd5'/>
<id>urn:sha1:73ea1ff4373d50625e4bcdc2ec3ab6984e528fd5</id>
<content type='text'>
IMO if we want flags again in the future, we should probably pick a
syntax that doesn't involve such awkward patterns.
Perhaps `$expr $( , $( $flag )* )?`.

But I think we probably won't need that feature.
</content>
</entry>
<entry>
<title>tor-rpcbase: invoker_ent: Infer the correct fn type for cast</title>
<updated>2024-04-25T14:25:30Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-25T10:54:21Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=35b1cc4250f03d86d05e431ddbfb4495b7f673b5'/>
<id>urn:sha1:35b1cc4250f03d86d05e431ddbfb4495b7f673b5</id>
<content type='text'>
This renders the Update flag redundant.
Indeed, in this commit we mow ignore the flags.
</content>
</entry>
<entry>
<title>tor-rpcbase: invoker_ent!: remove buggy unuseable arm</title>
<updated>2024-04-25T14:24:40Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-25T11:55:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0c92d8bc4a1d63db9d2c794c731e18a87d2dd324'/>
<id>urn:sha1:0c92d8bc4a1d63db9d2c794c731e18a87d2dd324</id>
<content type='text'>
This arm puts parens around its argument.  But the other arm insists
on $func:ident, and also would capture any reasonable input.

This was probably something to do with the (func_expr) syntax.  We
don't need to *fix* this macrology, because in a moment the whole
macro can be made to take $func:expr.
</content>
</entry>
<entry>
<title>rpc: add a comment from diziet to explain why we need same_decl</title>
<updated>2024-04-22T16:02:29Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-04-22T13:24:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=88d1c6e7505f1f374064999b6ae7e691bbf382f1'/>
<id>urn:sha1:88d1c6e7505f1f374064999b6ae7e691bbf382f1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rpc: reformat macro slightly.</title>
<updated>2024-04-22T16:02:29Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-04-22T13:21:46Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=243ab36c2d0b468300ab643749ee216ce93ca585'/>
<id>urn:sha1:243ab36c2d0b468300ab643749ee216ce93ca585</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename Invoker trait to Invocable.</title>
<updated>2024-04-22T16:02:29Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-04-22T13:15:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=326ea9a027dabd1ac65fba77e94f5437c8e36dae'/>
<id>urn:sha1:326ea9a027dabd1ac65fba77e94f5437c8e36dae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix rustdoc links.</title>
<updated>2024-04-22T16:02:29Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-04-12T18:12:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1c0b81296edba0f7ee11aaae7b5e4d760808c1a5'/>
<id>urn:sha1:1c0b81296edba0f7ee11aaae7b5e4d760808c1a5</id>
<content type='text'>
</content>
</entry>
</feed>
