libxev 0.0.1-rc.1

High-level Rust bindings for libxev.
1
2
3
4
5
6
7
8
9
10
//! Rust wrappers around the libxev fork's extended C API.
//!
//! Gated behind the `extended-api` feature. Add submodules here as the fork
//! grows new exports.

mod completion;
pub use completion::CompletionExt;

pub mod file;
pub use file::File;