zlink_tokio/
lib.rs

1#![doc(
2    html_logo_url = "https://raw.githubusercontent.com/z-galaxy/zlink/3660d731d7de8f60c8d82e122b3ece15617185e4/data/logo.png"
3)]
4#![deny(
5    missing_debug_implementations,
6    nonstandard_style,
7    rust_2018_idioms,
8    missing_docs
9)]
10#![warn(unreachable_pub)]
11#![cfg_attr(not(doctest), doc = include_str!("../README.md"))]
12
13pub use zlink_core::*;
14pub mod notified;
15pub mod unix;