forked from ClementNerma/tapo-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 787 Bytes
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
[package]
name = "tapo-rest"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.71"
axum = { version = "0.6.18", default-features = false, features = [
"http1",
"http2",
"tokio",
"json",
"query",
"headers",
"macros", # For debugging with #[axum::debug_handler]
] }
clap = { version = "4.3.0", features = ["derive"] }
rand = "0.8.5"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
tapo = { git = "https://github.com/ClementNerma/tapo.git" }
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread", "fs"] }
tower-http = { version = "0.4.0", features = ["cors"] }
openssl = { version = "0.10", features = ["vendored"] }
dirs = "5.0.1"
paste = "1.0.12"
time = { version = "0.3.21", features = ["serde"] }