mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
28 lines
664 B
TOML
28 lines
664 B
TOML
[package]
|
|
name = "ntex-multipart"
|
|
version = "0.2.0"
|
|
authors = ["ntex contributors <team@ntex.rs>"]
|
|
description = "Multipart support for ntex web framework."
|
|
readme = "README.md"
|
|
keywords = ["http", "web", "framework", "async", "ntex"]
|
|
homepage = "https://ntex.rs"
|
|
repository = "https://github.com/ntex-rs/ntex-extras.git"
|
|
documentation = "https://docs.rs/ntex-multipart/"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "ntex_multipart"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ntex = "0.6.0-beta.0"
|
|
derive_more = "0.99"
|
|
httparse = "1.3"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
twoway = "0.2"
|
|
|
|
[dev-dependencies]
|
|
ntex = { version = "0.6.0-beta.0", features=["tokio"] }
|