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

17 lines
345 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]
actix-web = { version = "4.0.0-beta.21", features = ["openssl"] }
awc = "3.0.0-beta.19"
2022-02-02 02:51:25 +01:00
env_logger = "0.9"
2019-12-07 18:59:24 +01:00
futures = "0.3.1"
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"