1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-files/Cargo.toml

52 lines
1.3 KiB
TOML
Raw Permalink Normal View History

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