mirror of
https://github.com/aramperes/nut-rs.git
synced 2025-09-09 05:28:31 -04:00
Release 0.5.0
Rename to rups
This commit is contained in:
parent
539d11848e
commit
feef67255f
21 changed files with 51 additions and 47 deletions
23
rups/src/lib.rs
Normal file
23
rups/src/lib.rs
Normal file
|
@ -0,0 +1,23 @@
|
|||
#![deny(missing_docs)]
|
||||
|
||||
//! # rups
|
||||
//!
|
||||
//! The `rups` crate provides a network client implementation
|
||||
//! for Network UPS Tools (NUT) servers.
|
||||
|
||||
pub use config::*;
|
||||
pub use error::*;
|
||||
pub use var::*;
|
||||
|
||||
/// Blocking client implementation for NUT.
|
||||
pub mod blocking;
|
||||
/// Async client implementation for NUT, using Tokio.
|
||||
#[cfg(feature = "async")]
|
||||
pub mod tokio;
|
||||
|
||||
mod cmd;
|
||||
mod config;
|
||||
mod error;
|
||||
#[cfg(feature = "ssl")]
|
||||
mod ssl;
|
||||
mod var;
|
Loading…
Add table
Add a link
Reference in a new issue