-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.1 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
39
40
# -*- eval: (cargo-minor-mode 1) -*-
[workspace]
members = ["derive"]
[package]
name = "gotham_formdata"
version = "0.0.8"
authors = ["Dominic Meiser <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"
description = "Form data parsing for the gotham web framework"
keywords = ["gotham", "html", "form", "urlencoded", "multipart"]
categories = ["web-programming", "web-programming::http-server"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/msrd0/gotham_formdata"
include = ["src/**", "Cargo.toml", "LICENSE", "README.md"]
[dependencies]
bytes = "1.0"
form_urlencoded = "1.0"
futures-util = "0.3.15"
gotham = { version = "0.7.2", default-features = false }
gotham_formdata_derive = { version = "0.0.7", path = "derive/" }
log = "0.4"
mime = "0.3.16"
multer = "2.0"
paste = "1.0"
serde = "1.0"
thiserror = "1.0"
validator = "0.17"
[dev-dependencies]
futures-executor = "0.3.15"
gotham = { version = "0.7", features = ["testing"], default-features = false }
percent-encoding = "2.1"
pretty_env_logger = "0.5"
trybuild = "=1.0.89"
validator = { version = "0.17", features = ["derive"] }