This repository has been archived on 2026-05-27. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rustypipe/src/lib.rs
2024-01-18 13:44:11 +01:00

20 lines
449 B
Rust

#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![warn(missing_docs, clippy::todo, clippy::dbg_macro)]
//! ## Go to
//!
//! - Client ([`rustypipe::client::Rustypipe`](crate::client::RustyPipe))
//! - Query ([`rustypipe::client::RustypipeQuery`](crate::client::RustyPipeQuery))
mod deobfuscate;
mod serializer;
mod util;
pub mod cache;
pub mod client;
pub mod error;
pub mod model;
pub mod param;
pub mod report;
pub mod validate;