summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: d86a21cf1e018aa1c3513cc65dd35935a2fe0341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "deez"
version = "0.1.0"
edition = "2021"

[dependencies]
actix-web = { version = "4.1.0", default-features = false, features = ["macros"] }
tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
thiserror = "1.0.33"
hyper = { version = "0.14.20", features = ["client", "http2", "tcp"] }

[dev_dependencies]
config = "0.13.2"
anyhow = "1.0.63"