aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 7c551bf98e789345acf5b081a6d6c80d4cf51ab5 (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
[package]
name = "miniserve"
version = "0.2.1"
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", "http", "server"]
categories = ["command-line-utilities", "command-line-interface", "network-programming", "web-programming::http-server"]
edition = "2018"

[badges]
travis-ci = { repository = "svenstaro/miniserve", branch = "master" }
maintenance = { status = "actively-developed" }

[profile.release]
lto = true

[dependencies]
clap = "2.29"
yansi = "0.5"
actix = "0.7"
actix-web = "0.7"
simplelog = "0.5"
base64 = "0.10"
percent-encoding = "1.0.1"
htmlescape = "0.3.1"