1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/json/json-validation/Cargo.toml

17 lines
398 B
TOML
Raw Normal View History

2018-04-27 21:30:29 +02:00
[package]
2022-02-02 02:51:25 +01:00
name = "json-validation"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2018-04-27 21:30:29 +02:00
[dependencies]
2022-02-25 22:07:22 +01:00
actix-web = "4"
2022-03-04 17:28:40 +01:00
awc = { version = "3.0.0-beta.21", features = ["openssl"] }
2022-02-02 02:51:25 +01:00
env_logger = "0.9"
2022-03-06 01:15:16 +01:00
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
2022-02-02 02:51:25 +01:00
log = "0.4"
serde = { version = "1.0.43", features = ["derive"] }
2018-04-27 21:30:29 +02:00
serde_json = "1.0.16"
validator = "0.14"
validator_derive = "0.14"