mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-21 10:43:25 +00:00
2de91cfd7f
The `socket2` imports are only used by the feature flagged `client` function.
Move the imports into the function to be feature flagged as well.
Avoids the following warning:
```
--> quinn/src/endpoint.rs:28:15
|
28 | use socket2::{Domain, Protocol, Socket, Type};
| ^^^^^^ ^^^^^^^^ ^^^^^^ ^^^^
|
= note: `#[warn(unused_imports)]` on by default
```