-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
44 lines (39 loc) · 1 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "weectrl"
version = "2.0.2"
authors = ["Klaus Nielsen <hyperchaotic@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["WeMo"]
repository = "https://github.com/Hyperchaotic/weectrl"
homepage = "https://github.com/Hyperchaotic/weectrl"
description = "A library and application for controlling WeMo switches."
categories = ["Network Programming"]
edition = "2021"
[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["local-time"] }
directories = "5"
futures = "0.3"
mime = "0.3.16"
serde-xml-rs = "0.6"
serde_json = "1.0"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
url = "2"
reqwest = { version = "0.11", features = ["blocking"] }
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
[dev-dependencies]
advmac = "1"
fltk = "1"
fltk-theme = "0.7"
[lib]
name = "weectrl"
path = "src/lib.rs"