aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-proto/src/client/stream/params.rs
Commit message (Collapse)AuthorAgeFilesLines
* proto: Move the `stream` module under `client` (breaking).Gabriela Moldovan2025-08-181-0/+91
The `stream` module is client-specific, for the most part, so I am moving it under `client`. Later on, we will factor out the parts that can be shared with the relay implementation. Note: this is a breaking change as the deleted `stream` module was `pub`. We could've kept the module and reexported from it the public types from `tor_proto::client::stream`, but I think it's better to have this `client` namespacing, because it makes the separation between the client and relay parts clearer.