Tiny file server
The simplest file server for web development purposes.
use ;
use FileServer;
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 run clippy, use the following command:
cargo clippy --all-targets --all-features -- -D warnings