1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

alpha.1 release

This commit is contained in:
Nikolay Kim
2019-03-28 13:46:26 -07:00
parent 9cca86e60d
commit 9c198a0d29
22 changed files with 82 additions and 132 deletions

View File

@ -2,7 +2,7 @@
name = "actix-files"
version = "0.1.0-alpha.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Static files support for Actix web."
description = "Static files support for actix web."
readme = "README.md"
keywords = ["actix", "http", "async", "futures"]
homepage = "https://actix.rs"
@ -18,13 +18,13 @@ name = "actix_files"
path = "src/lib.rs"
[dependencies]
actix-web = { path=".." }
actix-http = { path="../actix-http" }
actix-web = "1.0.0-alpha.1"
actix-http = "0.1.0-alpha.1"
actix-service = "0.3.3"
bitflags = "1"
bytes = "0.4"
futures = "0.1"
futures = "0.1.25"
derive_more = "0.14"
log = "0.4"
mime = "0.3"
@ -33,4 +33,4 @@ percent-encoding = "1.0"
v_htmlescape = "0.4"
[dev-dependencies]
actix-web = { path="..", features=["ssl"] }
actix-web = { version = "1.0.0-alpha.1", features=["ssl"] }