[][src]Crate libunftp

FTP server library for Rust

The libunftp library is a safe, fast and extensible FTP server implementation in Rust.

Because of its plugable authentication and storage backends (e.g. local filesystem, Google Buckets) it's more flexible than traditional FTP servers and a perfect match for the cloud.

It is currently under heavy development and not yet recommended for production use.

Quick Start

use libunftp;

let server = libunftp::Server::with_root(std::env::temp_dir());
server.listener("127.0.0.1:2121");

Re-exports

pub use crate::server::Server;

Modules

auth

Contains the Authenticator trait that is used by the Server to authenticate users, as well as its various implementations.

metrics

Contains the add...metric functions that are used for gathering metrics.

server

Contains the Server struct that is used to configure and control a FTP server instance.

storage

Contains the StorageBackend trait that is by the Server and its various implementations.