-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
34 lines (32 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
[package]
name = "actix-web-validator"
version = "6.0.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>", "Kolomatskiy Artem <[email protected]>"]
edition = "2021"
description = "Validation mechanism for actix-web"
keywords = ["actix-web", "serialization", "querystring", "validator", "validation"]
categories = ["encoding", "web-programming"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rambler-digital-solutions/actix-web-validator"
documentation = "https://docs.rs/actix-web-validator/"
[dependencies]
actix-web = { version = "4", default-features = false }
actix-http = { version = "3" }
validator = { version = "0.18" }
serde = "1"
serde_urlencoded = "0.7"
serde_json = "1"
serde_qs = { version = "0.13", features = ["actix4"] }
log = "0.4"
futures = "0.3"
mime = "0.3"
bytes = "1"
actix-router = "0.5"
futures-util = "0.3"
thiserror = "1.0"
[dev-dependencies]
actix-web = { version = "4", default-features = false, features = ["macros"] }
validator = { version = "0.18", features = ["derive"]}
serde = { version = "1", features = ["derive"] }
actix-service = "2"