2023-02-26 03:26:06 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-multipart-derive"
|
2024-07-06 23:30:27 +00:00
|
|
|
version = "0.7.0"
|
2023-02-26 03:26:06 +00:00
|
|
|
authors = ["Jacob Halsey <jacob@jhalsey.com>"]
|
|
|
|
description = "Multipart form derive macro for Actix Web"
|
|
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
2024-05-14 05:30:58 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-02-26 03:26:06 +00:00
|
|
|
|
2023-02-26 21:44:14 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
all-features = true
|
|
|
|
|
2023-02-26 03:26:06 +00:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-20 09:49:01 +00:00
|
|
|
darling = "0.20"
|
2023-02-26 03:26:06 +00:00
|
|
|
parse-size = "1"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2023-07-20 09:49:01 +00:00
|
|
|
syn = "2"
|
2023-02-26 03:26:06 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-07-06 23:05:53 +00:00
|
|
|
actix-multipart = "0.7"
|
2023-02-26 03:26:06 +00:00
|
|
|
actix-web = "4"
|
|
|
|
rustversion = "1"
|
|
|
|
trybuild = "1"
|
2024-07-07 02:54:00 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|