diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d1ed422 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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" |