breadx 3.0.1

Pure-Rust X11 connection implementation with a focus on adaptability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// MIT/Apache2 License

//! This module contains runtime support for the most common runtimes:
//! [`tokio`] and [`async-std`].
//!
//! [`tokio`]: crate::rt_support::tokio_support
//! [`async-std`]: crate::rt_support::async_std_support

#[cfg(feature = "async-std-support")]
pub mod async_std_support;
#[cfg(all(feature = "tokio-support", unix))]
pub mod tokio_support;