wl-proxy 0.1.2

Wayland connection proxy
Documentation
1
2
3
4
5
6
7
8
9
10
use log::LevelFilter;

pub mod proxy;
pub mod server;

pub fn install_logger() {
    let _ = env_logger::builder()
        .filter_level(LevelFilter::Trace)
        .try_init();
}