dzmedia/Cargo.toml

16 lines
519 B
TOML
Raw Normal View History

2021-09-14 11:53:06 +00:00
[package]
name = "dzmedia"
version = "0.1.0"
edition = "2021"
2021-09-14 11:53:06 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-10-24 13:29:29 +00:00
# using beta due to this: https://github.com/actix/actix-web/issues/2155
2022-02-04 11:09:25 +00:00
actix-web = "4.0.0-rc.2"
actix-cors = "0.6.0-beta.8"
2021-09-14 11:53:06 +00:00
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls", "cookies", "gzip"], default-features = false }
2021-09-14 11:53:06 +00:00
serde_json = "1.0"
thiserror = "1.0"
2021-10-24 13:29:29 +00:00
env_logger = "0.9"