<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-hsclient, branch arti-v1.1.5</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.1.5</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.1.5'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2023-06-01T14:03:05Z</updated>
<entry>
<title>Bump crate versions in preparation for v1.1.5 release.</title>
<updated>2023-06-01T14:03:05Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-06-01T14:03:05Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=daf5ecc15340c5910fdb912ea9099719befd916e'/>
<id>urn:sha1:daf5ecc15340c5910fdb912ea9099719befd916e</id>
<content type='text'>
Generated with the following commands:

```
cargo set-version --bump minor -p tor-cell
cargo set-version --bump minor -p tor-linkspec
cargo set-version --bump minor -p tor-proto
cargo set-version --bump minor -p tor-netdoc
cargo set-version --bump minor -p tor-circmgr

cargo set-version --bump patch -p tor-cert
cargo set-version --bump patch -p tor-basic-utils
cargo set-version --bump patch -p tor-rpcbase
cargo set-version --bump patch -p tor-llcrypto
cargo set-version --bump patch -p tor-hscrypto
cargo set-version --bump patch -p tor-checkable
cargo set-version --bump patch -p tor-async-utils
cargo set-version --bump patch -p caret
cargo set-version --bump patch -p fs-mistrust
cargo set-version --bump patch -p safelog
cargo set-version --bump patch -p retry-error
cargo set-version --bump patch -p tor-error
cargo set-version --bump patch -p tor-config
cargo set-version --bump patch -p tor-events
cargo set-version --bump patch -p tor-units
cargo set-version --bump patch -p tor-rtcompat
cargo set-version --bump patch -p tor-rtmock
cargo set-version --bump patch -p tor-protover
cargo set-version --bump patch -p tor-bytes
cargo set-version --bump patch -p tor-socksproto
cargo set-version --bump patch -p tor-consdiff
cargo set-version --bump patch -p tor-netdir
cargo set-version --bump patch -p tor-congestion
cargo set-version --bump patch -p tor-persist
cargo set-version --bump patch -p tor-chanmgr
cargo set-version --bump patch -p tor-ptmgr
cargo set-version --bump patch -p tor-guardmgr
cargo set-version --bump patch -p tor-dirclient
cargo set-version --bump patch -p tor-dirmgr
cargo set-version --bump patch -p tor-hsclient
cargo set-version --bump patch -p tor-hsservice
cargo set-version --bump patch -p arti-client
cargo set-version --bump patch -p arti-rpcserver
cargo set-version --bump patch -p arti-config
cargo set-version --bump patch -p arti-hyper
cargo set-version --bump patch -p arti
cargo set-version --bump patch -p arti-bench
cargo set-version --bump patch -p arti-testing
```
</content>
</entry>
<entry>
<title>tor-hsclient: Mockable: Do concrete calls with UFCS</title>
<updated>2023-05-23T11:47:33Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2023-05-22T13:31:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5ba7f31c1d6db0eeed5e83ce0c7bbed027de6df1'/>
<id>urn:sha1:5ba7f31c1d6db0eeed5e83ce0c7bbed027de6df1</id>
<content type='text'>
Method dispatch rules mean that if the receiver type of the actual
function changes, `self.call()` can turn into a purely-recursive call
which overflows the stack.

Async Rust doesn't have the usual warning for this situation :-(.

UFCS is clumsier but doesn't have that problem because it involves
much less magical dispatch.  Instead of generating a recursive call
which overflows the stack, it fails to compile.
</content>
</entry>
<entry>
<title>tor-hsclient: Fix MockableClientCirc for ClientCirc changes</title>
<updated>2023-05-23T11:47:33Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2023-05-22T13:31:18Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=79b9a26df05ae1364a02de51524d16026e9446be'/>
<id>urn:sha1:79b9a26df05ae1364a02de51524d16026e9446be</id>
<content type='text'>
ClientCirc::begin_dir_stream now takes Arc&lt;Self&gt;.  Method resolution
rules mean that this code would just recurse, leading to a stack
overflow.
</content>
</entry>
<entry>
<title>Fix a docs reference to refer to HsClientIntroAuthKeypair</title>
<updated>2023-05-22T13:30:16Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2023-05-22T13:29:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1fc1c269c312f29f1238b1004cd210743d8a6574'/>
<id>urn:sha1:1fc1c269c312f29f1238b1004cd210743d8a6574</id>
<content type='text'>
Fixes warning from
  cargo -o doc --document-private-items --all-features --workspace

This was evidentlhy overlooked during recent replacement of unescorted
private keys in the code.
</content>
</entry>
<entry>
<title>netdoc, hsclient: Update remaining ed25519::SecretKey users</title>
<updated>2023-05-18T18:18:53Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-05-18T15:09:18Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=82801d9963b654dec27d8deff58910caa9f3f7c8'/>
<id>urn:sha1:82801d9963b654dec27d8deff58910caa9f3f7c8</id>
<content type='text'>
Fortunately, these are all in experimental code.

Closes #798
</content>
</entry>
<entry>
<title>Refactor ClientCirc APIs to use Arc&lt;ClientCirc&gt;.</title>
<updated>2023-05-16T13:02:09Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-05-16T13:02:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ee390c423e7df0b678d77a8685f45dc526581910'/>
<id>urn:sha1:ee390c423e7df0b678d77a8685f45dc526581910</id>
<content type='text'>
Now ClientCirc is no longer `Clone`, and the things that need it
to be `Clone` instead return and use an Arc&lt;ClientCirc&gt;
We're doing this so that ClientCirc can participate in the RPC
system, and so that its semantics are more obvious.

Closes #846.

Thanks to the type system, this was a much simpler refactoring than
I had feared it would be.
</content>
</entry>
<entry>
<title>Reformat Cargo.toml files.</title>
<updated>2023-05-15T13:09:43Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-05-15T12:34:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e2e125fef7c027a24f23397eb1644a8565ad5d8b'/>
<id>urn:sha1:e2e125fef7c027a24f23397eb1644a8565ad5d8b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Run fixup-features --no-annotate for initial Cargo.toml fixes.</title>
<updated>2023-05-15T13:07:21Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-05-15T12:16:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7a5373c11007f29007341dc871c14ae1fa026cef'/>
<id>urn:sha1:7a5373c11007f29007341dc871c14ae1fa026cef</id>
<content type='text'>
This does the following:
  - Gives every crate a `full`.
  - Cause every `full` to depend on `full` from the lower-level
    crates.
  - Makes every feature listed _directly_ in `experimental` depend
    on `__is_experimental`.
</content>
</entry>
<entry>
<title>hsclient: descriptor_ensure no longer wraps the descriptor in TimerangeBound.</title>
<updated>2023-05-13T11:48:37Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2023-05-05T13:05:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=69924275968c1bbb5567a800bbb3d8d99d5250f3'/>
<id>urn:sha1:69924275968c1bbb5567a800bbb3d8d99d5250f3</id>
<content type='text'>
`descriptor_fetch_attempt` now returns a `TimerangeBound&lt;HsDesc&gt;` (and
so does `parse_descript_validate`).

Signed-off-by: Gabriela Moldovan &lt;gabi@torproject.org&gt;
</content>
</entry>
<entry>
<title>hsclient: Compute HsDesc validity time from the TimerangeBounds of its layers.</title>
<updated>2023-05-13T11:48:20Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2023-05-03T22:56:08Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=92e0b6a0290578e89d502898957cbdb7bc970dea'/>
<id>urn:sha1:92e0b6a0290578e89d502898957cbdb7bc970dea</id>
<content type='text'>
This makes `descriptor_ensure` refetch the descriptor if either of its
layers (inner or outer) expires.

Signed-off-by: Gabriela Moldovan &lt;gabi@torproject.org&gt;
</content>
</entry>
</feed>
