blob: d1ed42219e93d3263844d3d319a7820fadc38a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[package]
name = "miniserve"
version = "0.1.0"
description = "For when you really just want to serve some files over HTTP right now!"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"]
repository = "https://github.com/svenstaro/miniserve"
license = "MIT"
readme = "README.md"
keywords = ["serve", "http-server", "static-files"]
categories = ["command-line-utilities", "command-line-interface"]
[badges]
travis-ci = { repository = "svenstaro/miniserve", branch = "master" }
maintenance = { status = "actively-developed" }
[dependencies]
pbr = "1.0"
yansi = "0.4"
rand = "0.4"
chrono = "0.4"
url = "1.6"
lazy_static = "1.0"
humantime = "1.1"
regex = "0.2.5"
clap = "2.29"
ctrlc = "3.1"
actix = "0.5"
actix-web = { git = "https://github.com/actix/actix-web.git" }
simplelog = "0.5"
|