summaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/stream/dns.rs
Commit message (Collapse)AuthorAgeFilesLines
* arti-relay: Add back allow(clippy::unused_async)Gabriela Moldovan2026-07-271-0/+1
| | | | | | The clippy CI job that uses RECENT_RUST_IMAGE fails without the `allow` (RECENT_RUST_IMAGE uses Rust 1.96, where the `unused_async` false-positive still appears to trigger).
* arti-relay: Remove unused_async clippy escape hatchGabriela Moldovan2026-07-271-1/+0
| | | | | | | | | | | | | This was needed to work around two `unused_async` false-positives that would trigger on older Rust versions. This was fixed in https://github.com/rust-lang/rust-clippy/issues/15305 and released in 1.90, according to the [changelog]. Since these no longer trigger on 1.97.1, they are now causing the `expect(clippy::unused_async)` to fail. Removing the `expect`s seems like the most sensible fix. [changelog]: https://github.com/rust-lang/rust-clippy/issues/15305
* arti-relay: Add a task for handling incoming streamsGabriela Moldovan2026-07-221-0/+9
This is just the skeleton of the task. The implementation will follow later.