1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-15 13:02:54 +01:00
actix-web/actix-files/Cargo.toml

37 lines
861 B
TOML
Raw Permalink Normal View History

2019-03-01 23:59:44 -08:00
[package]
2019-03-06 23:39:08 -08:00
name = "actix-files"
2019-03-26 12:50:51 -07:00
version = "0.1.0-alpha.1"
2019-03-01 23:59:44 -08:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Static files support for Actix web."
readme = "README.md"
keywords = ["actix", "http", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
2019-03-26 12:50:51 -07:00
documentation = "https://docs.rs/actix-files/"
2019-03-01 23:59:44 -08:00
categories = ["asynchronous", "web-programming::http-server"]
license = "MIT/Apache-2.0"
edition = "2018"
workspace = ".."
[lib]
2019-03-06 23:43:03 -08:00
name = "actix_files"
2019-03-01 23:59:44 -08:00
path = "src/lib.rs"
[dependencies]
actix-web = { path=".." }
2019-03-26 12:50:51 -07:00
actix-http = { path="../actix-http" }
2019-03-09 14:56:18 -08:00
actix-service = "0.3.3"
2019-03-01 23:59:44 -08:00
bitflags = "1"
2019-03-01 23:59:44 -08:00
bytes = "0.4"
futures = "0.1"
derive_more = "0.14"
log = "0.4"
mime = "0.3"
mime_guess = "2.0.0-alpha"
percent-encoding = "1.0"
v_htmlescape = "0.4"
[dev-dependencies]
2019-03-04 16:29:03 -08:00
actix-web = { path="..", features=["ssl"] }