6 releases

0.1.5 Nov 20, 2022
0.1.4 Dec 10, 2021
0.1.3 Feb 5, 2021
0.1.1 Jan 7, 2021
0.1.0 Dec 18, 2020

#309 in Debugging

Download history 2/week @ 2024-02-18 9/week @ 2024-02-25 3/week @ 2024-03-03 5/week @ 2024-03-10 6/week @ 2024-03-17 2/week @ 2024-03-24 82/week @ 2024-03-31

96 downloads per month

MIT license

9KB
116 lines

Tiny file server

The simplest file server for web development purposes.

use env_logger::{Builder, Env};
use tiny_file_server::FileServer;

fn main() {
    Builder::from_env(Env::default().default_filter_or("debug")).init();

    FileServer::http("127.0.0.1:9080")
        .expect("Server should be created")
        .run("path/to/static/files")
        .expect("Server should start");
}

Development notes

To check the project, use the following command:

cargo check --all-features --all-targets

To run all tests, use the following command:

cargo test --all-features --all-targets

To check and perform formatting, use the following commands:

cargo +nightly fmt -- --check
cargo +nightly fmt

To enable autoformatting for IntelliJ IDEA with the Rust plugin:

File -> Settings -> Languages & Frameworks -> Rust -> Rustfmt, check "Run rustfmt on Save"

To run clippy, use the following command:

cargo clippy --all-targets --all-features -- -D warnings

Dependencies

~380KB