7 releases

0.2.4 Dec 24, 2023
0.2.3 Sep 16, 2023
0.2.2 Jan 25, 2023
0.2.1 Jun 25, 2022
0.1.0 Mar 26, 2021

#3 in #ftp-server

Download history 148/week @ 2023-12-22 139/week @ 2023-12-29 59/week @ 2024-01-05 62/week @ 2024-01-12 38/week @ 2024-01-19 41/week @ 2024-01-26 61/week @ 2024-02-02 83/week @ 2024-02-09 136/week @ 2024-02-16 158/week @ 2024-02-23 111/week @ 2024-03-01 96/week @ 2024-03-08 108/week @ 2024-03-15 70/week @ 2024-03-22 130/week @ 2024-03-29 79/week @ 2024-04-05

390 downloads per month
Used in 8 crates

Apache-2.0

390KB
8K SLoC

unftp-sbe-fs

Crate Version API Docs Crate License Follow on Telegram

This unftp-sbe-fs crate allows you to use a regular Filesystem with libunftp and work like a regular FTP server.

Getting started

If you've got Rust and cargo installed, create your project with

cargo new myftp

Add the libunftp and tokio crates to your project's dependencies in Cargo.toml.

[dependencies]
libunftp = "0.19.1"
unftp-sbe-fs = "0.2.2"
tokio = { version = "1", features = ["full"] }

Now you're ready to develop your server! Add the following to src/main.rs:

use unftp_sbe_fs::ServerExt;

#[tokio::main]
pub async fn main() {
    let ftp_home = std::env::temp_dir();
    let server = libunftp::Server::with_fs(ftp_home)
        .greeting("Welcome to my FTP server")
        .passive_ports(50000..65535);

    server.listen("127.0.0.1:2121").await;
}

You can now run your server with cargo run and connect to localhost:2121 with your favourite FTP client e.g.:

lftp -p 2121 localhost

For more help refer to:

Getting help and staying informed

Support is given on a best effort basis. You are welcome to engage us on the discussions page or create a Github issue.

You can also follow news and talk to us on Telegram

Contributing

Thank you for your interest in contributing to unftp-sbe-fs!

Please feel free to create a Github issue if you encounter any problems.

Want to submit a feature request or develop your own storage or authentication back-end? Then head over to our contribution guide (CONTRIBUTING.md).

License

You're free to use, modify and distribute this software under the terms of the Apache License v2.0.

Dependencies

~19–31MB
~543K SLoC