-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.09 KB
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
[package]
name = "solaredge"
version = "0.9.1"
edition = "2024"
rust-version = "1.85.0"
description = "SolarEdge API client"
keywords = ["solaredge", "energy", "solar", "automation", "home"]
categories = ["api-bindings", "network-programming", "asynchronous", "hardware-support"]
authors = ["Pro <twisted.fall@gmail.com>"]
license = "LGPL-3.0"
documentation = "https://docs.rs/solaredge"
repository = "https://github.com/twistedfall/solaredge"
exclude = ["/.github", "/tools", ".gitignore", "release.toml", "rustfmt.toml"]
[badges]
maintenance = { status = "passively-maintained" }
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
http-adapter = "0.3"
log = "0.4"
percent-encoding = { version = "2", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_repr = "0.1"
serde_urlencoded = "0.7"
serde_variant = "0.1"
url = { version = "2", default-features = false }
[dev-dependencies]
async-trait = "0.1"
env_logger = "0.11"
http-adapter-reqwest = "0.4"
tokio = { version = "1", default-features = false, features = ["macros"] }