forked from rich-murphey/actix-web-static-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
authors = ["Alexander Korolev <[email protected]>"]
build = "build.rs"
categories = ["network-programming",
"asynchronous",
"web-programming::http-server"]
description = """
actix-web static files as resources support.
"""
edition = "2018"
homepage = "https://github.com/kilork/actix-web-static-files"
keywords = ["actix", "http", "web", "static"]
license = "Unlicense OR MIT"
name = "actix-web-static-files"
readme = "README.md"
repository = "https://github.com/kilork/actix-web-static-files"
version = "3.0.5"
[features]
default = []
[dependencies]
actix-web = { version = "3.0", default-features = false }
actix-service = { version = "1.0.6", default-features = false }
change-detection = { version = "1.1", optional = true }
derive_more = "0.99.5"
futures = { version = "0.3", default-features = false }
mime_guess = "2.0"
path-slash = "0.1"
[build-dependencies]
actix-web = { version = "3.0", default-features = false }
actix-service = { version = "1.0.6", default-features = false }
change-detection = { version = "1.1", optional = true }
derive_more = "0.99.5"
futures = { version = "0.3", default-features = false }
mime_guess = "2.0"
path-slash = "0.1"