rust-integration-services 0.5.26

A modern, fast, and lightweight integration library written in Rust, designed for memory safety and stability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(dead_code)]

mod common;

#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "file")]
pub mod file;
#[cfg(feature = "scheduler")]
pub mod scheduler;
#[cfg(feature = "sftp")]
pub mod sftp;
#[cfg(feature = "smtp")]
pub mod smtp;
#[cfg(feature = "s3")]
pub mod s3;