-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (30 loc) · 843 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "tapo-rest"
version = "0.1.4"
edition = "2021"
[dependencies]
anyhow = "1.0.93"
axum = { version = "0.7.9", default-features = false, features = [
"http1",
"http2",
"tokio",
"json",
"query",
"macros", # For debugging with #[axum::debug_handler]
] }
clap = { version = "4.5.21", features = ["derive"] }
rand = "0.8.5"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tapo = "0.7.17"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "fs"] }
tower-http = { version = "0.6.1", features = ["cors"] }
openssl = { version = "0.10", features = ["vendored"] }
dirs = "5.0.1"
paste = "1.0.15"
axum-extra = { version = "0.9.6", features = ["typed-header"] }
chrono = { version = "0.4.38", default-features = false, features = [
"std",
"windows-targets",
"serde",
] }