swayipc_async/
lib.rs

1#![deny(unsafe_code)]
2#![deny(rust_2018_idioms)]
3
4mod common;
5mod connection;
6mod event;
7mod socket;
8#[cfg(test)]
9mod tests;
10
11pub use connection::Connection;
12pub use event::EventStream;
13pub use swayipc_types::*;