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-09-10 03:15:41 +02:00

24 lines
577 B
Rust

#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![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;
/// Version of the RustyPipe crate
pub const VERSION: &str = env!("CARGO_PKG_VERSION");