4 releases (breaking)

Uses old Rust 2015

0.4.0 Oct 19, 2018
0.3.0 Oct 26, 2017
0.2.0 Oct 18, 2017
0.1.0 Oct 15, 2017

#4 in #evaluated

Download history 20/week @ 2024-11-15 55/week @ 2024-11-22 63/week @ 2024-11-29 108/week @ 2024-12-06 132/week @ 2024-12-13 48/week @ 2024-12-20 21/week @ 2024-12-27 70/week @ 2025-01-03 134/week @ 2025-01-10 118/week @ 2025-01-17 72/week @ 2025-01-24 101/week @ 2025-01-31 162/week @ 2025-02-07 136/week @ 2025-02-14 129/week @ 2025-02-21 88/week @ 2025-02-28

540 downloads per month
Used in 3 crates

MIT/Apache

33KB
530 lines

simple-server

a crate for building a simple blocking HTTP server

Build Status crates.io

NOTE: this crate has not been evaluated for security concerns. therefore, we recommend that you take caution before using it in a production application.

up and running

this crate is written in the rust programming language. you'll need rust to run this crate. you can install rust using rustup. simple-server requires that you use rust version 1.20+.

to get this crate running locally:

  1. fork and clone this repository
  2. cd simple-server
  3. cargo build

to use this crate in your project, add the following line to your Cargo.toml in the [dependencies] section:

simple-server = "0.3.0"

to see this crate in action, check out the examples.

tests

to test this crate locally, run:

cargo test

docs

this crate has documentation. to build and open the docs locally:

cargo doc --open

examples

there are several examples provided with this crate:

to run an example:

cargo run --example <name of example>

this crate uses the log crate for logging. in the example, we use the env-logger crate to display the logs. by default, env-logger only prints out error-level logs. to enable info-level logging as well, you'll need to do one of the following depending on your system:

on Linux/OS X:

RUST_LOG="simple_server=info" cargo run --example server

on Windows PowerShell:

$env:RUST_LOG="simple_server=info";
cargo run --example server

license

simple-server is licensed under both the Apache2 and MIT licenses.

Dependencies

~2.5MB
~37K SLoC