| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
|
| |
This breaks config tests in crates/arti which test configuration
parsing of disabled experimental features.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, Channel was a type that you could Clone that implicitly
its state. Now, Channel always appears as an Arc<Channel>.
This change has several benefits:
* It makes the relationship between Channel struct and the
underlying channel more clear.
* It enables Channel to participate in the RPC system,
where everything has to be an Arc<.>
* It enables us to have a Weak<Channel>, if we ever want to.
* It will let us move various members out of ChannelDetails.
We did this change a while ago with ClientCirc.
|
| |
|
|
| |
Edited-by: Nick Mathewson <[email protected]>
|
| | |
|
| |
|
|
| |
We're going to start using this type for _every_ kind of transport.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
Chrono is unmaintained, I think, and uses a version of `time` that
cargo-audit doesn't like.
|
| |
|
|
| |
Part of a solution for cargo-audit.
|
| |
|
|
|
| |
With permission from gotlou; see discussion at
https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/1556
|
| |
|