aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 0851f9db1bf9f66db325341b9cc5fc63eed08618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[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]
clap = "2.29"
actix = "0.5"
actix-web = { git = "https://github.com/svenstaro/actix-web.git" }
simplelog = "0.5"