mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 04:47:40 +03:00
35 lines
843 B
TOML
35 lines
843 B
TOML
[package]
|
|
name = "ntex-files"
|
|
version = "0.2.0"
|
|
authors = ["ntex contributors <team@ntex.rs>"]
|
|
description = "Static files support for ntex web."
|
|
readme = "README.md"
|
|
keywords = ["ntex", "http", "async", "futures"]
|
|
homepage = "https://ntex.rs"
|
|
repository = "https://github.com/ntex-rs/ntex-extras.git"
|
|
documentation = "https://docs.rs/ntex-files/"
|
|
categories = ["asynchronous", "web-programming::http-server"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
workspace = ".."
|
|
|
|
[lib]
|
|
name = "ntex_files"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ntex = "0.6.0-beta.0"
|
|
ntex-http = "0.1.8"
|
|
bitflags = "1.3"
|
|
futures = "0.3"
|
|
derive_more = "0.99"
|
|
http = "0.2"
|
|
hyperx = "1.4.0"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
mime_guess = "2.0.1"
|
|
percent-encoding = "2.1"
|
|
v_htmlescape = "0.14.1"
|
|
|
|
[dev-dependencies]
|
|
ntex = { version = "0.6.0-beta.0", features=["tokio", "openssl", "compress"] }
|