1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 06:04:40 +01:00
actix-web/actix-files/Cargo.toml

52 lines
1.3 KiB
TOML
Raw Normal View History

2019-03-01 23:59:44 -08:00
[package]
2019-03-06 23:39:08 -08:00
name = "actix-files"
2022-07-23 16:37:59 +01:00
version = "0.6.2"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"fakeshadow <24548779@qq.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"]
license = "MIT OR Apache-2.0"
2019-03-01 23:59:44 -08:00
edition = "2018"
[lib]
2019-03-06 23:43:03 -08:00
name = "actix_files"
2019-03-01 23:59:44 -08:00
path = "src/lib.rs"
[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"
actix-service = "2"
actix-utils = "3"
2022-02-25 20:36:16 +00:00
actix-web = { version = "4", default-features = false }
askama_escape = "0.10"
bitflags = "1"
bytes = "1"
derive_more = "0.99.5"
2021-04-01 15:26:13 +01:00
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
http-range = "0.1.4"
2019-03-01 23:59:44 -08:00
log = "0.4"
mime = "0.3"
mime_guess = "2.0.1"
2019-08-13 10:48:11 -07:00
percent-encoding = "2.1"
pin-project-lite = "0.2.7"
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]
tokio-uring = { version = "0.3", optional = true, features = ["bytes"] }
actix-server = { version = "2.1", 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"
tempfile = "3.2"