[package] name = "tado" description = "A simple library to interact with the Tado API" version = "1.1.0" license = "Apache-2.0" repository = "https://github.com/mossida/tado" edition = "2021" [features] chrono = ["dep:chrono", "dep:chrono-tz"] [dependencies] thiserror = { version = "1.0.58" } reqwest = { version = "0.12", features = ["json"] } tokio = { version = "1", features = ["full"] } oauth2 = { version = "4.4.2" } serde = { version = "1.0.179" } serde_json = { version = "1.0.115" } strum = { version = "0.26.2", features = ["derive"] } chrono = { version = "0.4.37", features = ["serde"], optional = true } chrono-tz = { version = "0.8.6", features = ["serde"], optional = true }