libunftp 0.23.0

Extensible, async, cloud orientated FTP(S) server library.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Authentication helpers and built-in implementations.
//!
//! Core authentication traits and types live in `unftp-core`.
pub mod anonymous;
pub use anonymous::AnonymousAuthenticator;

pub(crate) use unftp_core::auth::UserDetail;

mod pipeline;
pub(crate) use pipeline::AuthenticationPipeline;