2019-03-01 23:59:44 -08:00
|
|
|
[package]
|
2019-03-06 23:39:08 -08:00
|
|
|
name = "actix-files"
|
2024-06-09 19:45:14 +01:00
|
|
|
version = "0.6.6"
|
2021-11-22 18:46:19 +00:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
]
|
2020-10-06 22:08:33 +01:00
|
|
|
description = "Static file serving for Actix Web"
|
2019-03-01 23:59:44 -08:00
|
|
|
keywords = ["actix", "http", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
2021-06-26 16:33:36 +01:00
|
|
|
repository = "https://github.com/actix/actix-web"
|
2019-03-01 23:59:44 -08:00
|
|
|
categories = ["asynchronous", "web-programming::http-server"]
|
2020-07-14 11:19:56 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-02 01:09:15 +01:00
|
|
|
edition = "2021"
|
2019-03-01 23:59:44 -08:00
|
|
|
|
2024-06-10 03:39:06 +01:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
|
|
|
"actix_http::*",
|
|
|
|
"actix_service::*",
|
|
|
|
"actix_web::*",
|
|
|
|
"http::*",
|
|
|
|
"mime::*",
|
|
|
|
]
|
2019-03-01 23:59:44 -08:00
|
|
|
|
2021-11-22 09:19:09 +08:00
|
|
|
[features]
|
|
|
|
experimental-io-uring = ["actix-web/experimental-io-uring", "tokio-uring"]
|
|
|
|
|
2019-03-01 23:59:44 -08:00
|
|
|
[dependencies]
|
2022-02-25 20:36:16 +00:00
|
|
|
actix-http = "3"
|
2021-11-30 13:11:41 +00:00
|
|
|
actix-service = "2"
|
|
|
|
actix-utils = "3"
|
2022-02-25 20:36:16 +00:00
|
|
|
actix-web = { version = "4", default-features = false }
|
2021-02-07 05:50:23 +01:00
|
|
|
|
2023-05-06 11:38:51 +01:00
|
|
|
bitflags = "2"
|
2021-01-04 07:47:04 +08:00
|
|
|
bytes = "1"
|
2024-08-18 22:17:03 +08:00
|
|
|
derive_more = { version = "1", features = ["display", "error", "from"] }
|
2022-12-18 01:34:48 +00:00
|
|
|
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
|
2021-02-16 19:48:16 +01:00
|
|
|
http-range = "0.1.4"
|
2019-03-01 23:59:44 -08:00
|
|
|
log = "0.4"
|
2023-03-11 22:14:58 +00:00
|
|
|
mime = "0.3.9"
|
2019-08-12 05:43:29 +09:00
|
|
|
mime_guess = "2.0.1"
|
2019-08-13 10:48:11 -07:00
|
|
|
percent-encoding = "2.1"
|
2021-11-22 09:19:09 +08:00
|
|
|
pin-project-lite = "0.2.7"
|
2023-03-11 22:14:58 +00:00
|
|
|
v_htmlescape = "0.15.5"
|
2021-11-22 09:19:09 +08:00
|
|
|
|
2022-03-10 01:05:03 +00:00
|
|
|
# experimental-io-uring
|
2022-04-23 14:37:03 +01:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2024-06-09 18:37:42 +01:00
|
|
|
tokio-uring = { version = "0.5", optional = true, features = ["bytes"] }
|
|
|
|
actix-server = { version = "2.4", optional = true } # ensure matching tokio-uring versions
|
2019-03-01 23:59:44 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-10 01:05:03 +00:00
|
|
|
actix-rt = "2.7"
|
2022-07-24 02:13:46 +01:00
|
|
|
actix-test = "0.1"
|
2022-06-11 16:15:43 +01:00
|
|
|
actix-web = "4"
|
2024-03-03 23:43:54 +00:00
|
|
|
env_logger = "0.11"
|
2022-01-04 15:54:11 +03:00
|
|
|
tempfile = "3.2"
|
2024-07-07 03:54:00 +01:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|