2019-03-02 07:59:44 +00:00
|
|
|
[package]
|
2019-03-07 07:39:08 +00:00
|
|
|
name = "actix-files"
|
2021-04-02 08:43:51 +00:00
|
|
|
version = "0.6.0-beta.4"
|
2019-03-02 07:59:44 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2020-10-06 21:08:33 +00:00
|
|
|
description = "Static file serving for Actix Web"
|
2019-03-02 07:59:44 +00:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["actix", "http", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
2019-03-26 19:50:51 +00:00
|
|
|
documentation = "https://docs.rs/actix-files/"
|
2019-03-02 07:59:44 +00:00
|
|
|
categories = ["asynchronous", "web-programming::http-server"]
|
2020-07-14 02:19:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-03-02 07:59:44 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
2019-03-07 07:43:03 +00:00
|
|
|
name = "actix_files"
|
2019-03-02 07:59:44 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-02 08:37:51 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.5", default-features = false }
|
2021-02-07 01:00:40 +00:00
|
|
|
actix-service = "2.0.0-beta.4"
|
2021-04-01 14:26:13 +00:00
|
|
|
actix-utils = "3.0.0-beta.4"
|
2021-02-07 04:50:23 +00:00
|
|
|
|
|
|
|
askama_escape = "0.10"
|
2019-03-25 20:02:37 +00:00
|
|
|
bitflags = "1"
|
2021-01-03 23:47:04 +00:00
|
|
|
bytes = "1"
|
2021-04-01 14:26:13 +00:00
|
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
2021-02-16 18:48:16 +00:00
|
|
|
http-range = "0.1.4"
|
2020-12-26 04:05:45 +00:00
|
|
|
derive_more = "0.99.5"
|
2019-03-02 07:59:44 +00:00
|
|
|
log = "0.4"
|
|
|
|
mime = "0.3"
|
2019-08-11 20:43:29 +00:00
|
|
|
mime_guess = "2.0.1"
|
2019-08-13 17:48:11 +00:00
|
|
|
percent-encoding = "2.1"
|
2019-03-02 07:59:44 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-29 12:45:48 +00:00
|
|
|
actix-rt = "2.2"
|
2021-04-02 08:37:51 +00:00
|
|
|
actix-web = "4.0.0-beta.5"
|
2021-04-02 09:03:01 +00:00
|
|
|
actix-test = "0.1.0-beta.1"
|