2020-06-18 02:30:42 +02:00
|
|
|
#![deny(warnings)]
|
2020-02-13 00:43:01 +01:00
|
|
|
#![warn(unused_extern_crates)]
|
2022-02-20 03:43:38 +01:00
|
|
|
#![deny(clippy::todo)]
|
|
|
|
#![deny(clippy::unimplemented)]
|
2020-08-01 12:31:05 +02:00
|
|
|
#![deny(clippy::unwrap_used)]
|
|
|
|
#![deny(clippy::expect_used)]
|
|
|
|
#![deny(clippy::panic)]
|
|
|
|
#![deny(clippy::unreachable)]
|
|
|
|
#![deny(clippy::await_holding_lock)]
|
|
|
|
#![deny(clippy::needless_pass_by_value)]
|
|
|
|
#![deny(clippy::trivially_copy_pass_by_ref)]
|
2020-02-13 00:43:01 +01:00
|
|
|
|
2023-02-28 02:39:39 +01:00
|
|
|
#[cfg(target_family = "unix")]
|
2020-02-13 00:43:01 +01:00
|
|
|
#[macro_use]
|
2021-12-17 04:54:13 +01:00
|
|
|
extern crate tracing;
|
2020-02-13 00:43:01 +01:00
|
|
|
|
2023-02-28 02:39:39 +01:00
|
|
|
#[cfg(target_family = "unix")]
|
2020-02-15 01:27:25 +01:00
|
|
|
pub mod client;
|
2023-02-28 02:39:39 +01:00
|
|
|
#[cfg(target_family = "unix")]
|
2021-03-13 03:33:15 +01:00
|
|
|
pub mod client_sync;
|
2023-02-28 02:39:39 +01:00
|
|
|
#[cfg(target_family = "unix")]
|
2020-06-21 13:57:48 +02:00
|
|
|
pub mod constants;
|
2023-02-28 02:39:39 +01:00
|
|
|
#[cfg(target_family = "unix")]
|
2020-02-29 05:02:14 +01:00
|
|
|
pub mod unix_config;
|
2023-02-28 02:39:39 +01:00
|
|
|
#[cfg(target_family = "unix")]
|
2023-06-15 05:24:53 +02:00
|
|
|
pub mod unix_passwd;
|
|
|
|
#[cfg(target_family = "unix")]
|
2020-02-13 00:43:01 +01:00
|
|
|
pub mod unix_proto;
|