blockless-hyper-file 0.1.2

This hyper static file crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Blockless hyper-file

This crate is implemention of  the http file range for hyper extension. 

## Easy use.

```rust
let builder = Server::bind(&addr);
let server = builder.serve(FileServiceMaker::new("."));
server.await.unwrap();
```