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

14 lines
272 B
TOML
Raw Normal View History

[package]
name = "actix-web-cors"
2019-12-16 08:09:54 +01:00
version = "1.0.0"
2022-01-31 03:45:53 +01:00
edition = "2021"
[dependencies]
2022-02-25 22:07:22 +01:00
actix-web = { version = "4", features = ["rustls"] }
2022-01-31 03:45:53 +01:00
actix-cors = "0.6.0-beta.8"
2020-09-12 17:49:45 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2022-01-31 03:45:53 +01:00
env_logger = "0.9"
2019-12-16 08:09:54 +01:00
futures = "0.3"