#![cfg_attr(not(target_os = "windows"), allow(dead_code, unused_imports))]
#![deny(rust_2018_idioms)]
#![warn(clippy::pedantic, clippy::nursery)]
#![allow(
clippy::module_name_repetitions,
clippy::missing_errors_doc,
clippy::missing_panics_doc
)]
pub mod bridge;
pub mod diagnostics;
pub mod error;
pub mod frame;
#[cfg(all(target_os = "windows", feature = "windows-debug"))]
pub mod log_forward;
pub mod protocol;
pub mod transport;
pub use error::{GcsError, GcsResult};
#[cfg(test)]
mod tests {
#[test]
fn crate_exports_compile() {
let _: super::GcsError = std::io::Error::other("x").into();
}
}