Initial commit

This commit is contained in:
2022-10-10 19:50:29 +01:00
commit 39cf3c72a5
6 changed files with 1389 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "solax2mqtt"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
paho-mqtt = "*"
serde = { version = "*", features = [ "derive" ] }
serde_json = "*"
ureq = { version = "*", features = [ "json" ] }
[profile.release]
lto = true
opt-level = "z"
strip = true