| Crates.io | rust-integration-services |
| lib.rs | rust-integration-services |
| version | 0.4.0 |
| created_at | 2025-07-19 09:11:01.733836+00 |
| updated_at | 2025-09-28 14:48:19.686635+00 |
| description | A modern, fast, and lightweight integration library written in Rust, designed for memory safety and stability. |
| homepage | |
| repository | https://github.com/AndreasLill/rust-integration-services |
| max_upload_size | |
| id | 1760024 |
| size | 159,713 |
A modern, fast, and lightweight integration library written in Rust, designed for memory safety and stability. It simplifies the development of scalable integrations for receiving and sending data, with built-in support for common protocols.
Add rust-integration-services to your project Cargo.toml with all or select features.
All features
[dependencies]
tokio = { version = "1.47.1", features = ["full"] }
rust-integration-services = { version = "0.4.0", features = ["full"] }
With select features
[dependencies]
tokio = { version = "1.47.1", features = ["full"] }
rust-integration-services = { version = "0.4.0", features = ["file", "schedule", "sftp", "http", "smtp"] }
The file module focus on the local file system and is useful for polling files in a directory, copying, moving or writing to a file.
The http module is built on top of the fast and reliable hyper crate, and routing is handled using matchit crate.
It supports both HTTP/1.1 and HTTP/2 protocols, enabling modern, high-performance HTTP communication with automatic protocol negotiation via ALPN (Application-Layer Protocol Negotiation) with dynamic routing for REST.
The sftp module is built on top of the low-level russh and russh-sftp crates.
These crates provide direct access to the SSH transport layer and the SFTP protocol, giving full control over connection management, authentication, and file transfer operations.
The SMTP module is built on top of the reliable lettre crate.
lettre provides an asynchronous, rust-native SMTP support for secure connections via TLS.
The schedule module assist in scheduling tasks over time, such as hourly, daily or weekly.
During downtime or maintenance it calculates the next scheduled time automatically on resume.