dzmedia/Cargo.toml

17 lines
619 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]
2022-12-07 00:37:13 +00:00
axum = "0.6"
http = "0.2"
tower-http = { version = "0.3", features = ["cors", "trace", "compression-br", "compression-deflate", "compression-gzip"] }
tracing-subscriber = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
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"