miniserve/Cargo.toml

28 lines
787 B
TOML
Raw Normal View History

2018-04-26 17:32:25 +00:00
[package]
name = "miniserve"
2018-11-20 19:29:01 +00:00
version = "0.2.1"
2018-04-26 17:32:25 +00:00
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"
2018-05-17 15:29:00 +00:00
keywords = ["serve", "http-server", "static-files", "http", "server"]
categories = ["command-line-utilities", "command-line-interface", "network-programming", "web-programming::http-server"]
2018-04-26 17:32:25 +00:00
[badges]
travis-ci = { repository = "svenstaro/miniserve", branch = "master" }
maintenance = { status = "actively-developed" }
[profile.release]
lto = true
2018-04-26 17:32:25 +00:00
[dependencies]
clap = "2.29"
2018-12-10 15:32:09 +00:00
yansi = "0.5"
2018-07-26 06:05:08 +00:00
actix = "0.7"
actix-web = "0.7"
2018-04-26 17:32:25 +00:00
simplelog = "0.5"
2018-10-30 19:38:28 +00:00
base64 = "0.10"
2018-11-08 12:41:31 +00:00
percent-encoding = "1.0.1"
htmlescape = "0.3.1"