|
2 | 2 | #![allow(clippy::print_stdout)] |
3 | 3 |
|
4 | 4 | // Used by devolutions-gateway library. |
| 5 | +use argon2 as _; |
| 6 | +use async_trait as _; |
| 7 | +use axum as _; |
| 8 | +use axum_extra as _; |
| 9 | +use backoff as _; |
| 10 | +use bytes as _; |
| 11 | +use camino as _; |
| 12 | +use devolutions_agent_shared as _; |
| 13 | +use dlopen as _; |
| 14 | +use dlopen_derive as _; |
| 15 | +use dunce as _; |
| 16 | +use etherparse as _; |
| 17 | +use hostname as _; |
| 18 | +use http_body_util as _; |
| 19 | +use hyper as _; |
| 20 | +use hyper_util as _; |
| 21 | +use ironrdp_core as _; |
| 22 | +use ironrdp_pdu as _; |
| 23 | +use ironrdp_rdcleanpath as _; |
| 24 | +use jmux_proxy as _; |
| 25 | +use job_queue as _; |
| 26 | +use job_queue_libsql as _; |
| 27 | +use multibase as _; |
| 28 | +use network_scanner as _; |
| 29 | +use ngrok as _; |
| 30 | +use nonempty as _; |
| 31 | +use pcap_file as _; |
| 32 | +use picky as _; |
| 33 | +use picky_krb as _; |
| 34 | +use pin_project_lite as _; |
| 35 | +use portpicker as _; |
| 36 | +use reqwest as _; |
5 | 37 | #[cfg(windows)] |
6 | 38 | use rustls_cng as _; |
| 39 | +use serde as _; |
| 40 | +use serde_urlencoded as _; |
| 41 | +use smol_str as _; |
| 42 | +use sysinfo as _; |
| 43 | +use thiserror as _; |
| 44 | +use time as _; |
| 45 | +use tokio_rustls as _; |
| 46 | +use tokio_tungstenite as _; |
| 47 | +use tower as _; |
| 48 | +use tower_http as _; |
| 49 | +use transport as _; |
| 50 | +use tungstenite as _; |
| 51 | +use typed_builder as _; |
| 52 | +use url as _; |
7 | 53 | #[cfg(feature = "openapi")] |
8 | 54 | use utoipa as _; |
9 | | -use { |
10 | | - argon2 as _, async_trait as _, axum as _, axum_extra as _, backoff as _, bytes as _, camino as _, |
11 | | - devolutions_agent_shared as _, dlopen as _, dlopen_derive as _, dunce as _, etherparse as _, hostname as _, |
12 | | - http_body_util as _, hyper as _, hyper_util as _, ironrdp_core as _, ironrdp_pdu as _, ironrdp_rdcleanpath as _, |
13 | | - jmux_proxy as _, job_queue as _, job_queue_libsql as _, multibase as _, network_scanner as _, ngrok as _, |
14 | | - nonempty as _, pcap_file as _, picky as _, picky_krb as _, pin_project_lite as _, portpicker as _, reqwest as _, |
15 | | - serde as _, serde_urlencoded as _, smol_str as _, sysinfo as _, thiserror as _, time as _, tokio_rustls as _, |
16 | | - tokio_tungstenite as _, tower as _, tower_http as _, transport as _, tungstenite as _, typed_builder as _, |
17 | | - url as _, uuid as _, zeroize as _, |
18 | | -}; |
| 55 | +use uuid as _; |
| 56 | +use zeroize as _; |
19 | 57 | // Used by tests. |
20 | 58 | #[cfg(test)] |
21 | 59 | use { |
|
0 commit comments