[package] name = "easee" version = "0.1.0" edition = "2021" authors = ["Maxime Augier "] description = "Rust bindings for the Easee cloud API for EV charging devices" readme = "README.md" repository = "https://github.com/maugier/easee-rs" license = "GPL-3.0" keywords = ["easee"] categories = ["api-bindings"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chrono = { version = "0.4.38", features = ["serde"] } futures-util = { version = "0.3.30", features = ["futures-sink"] } reqwest = { version = "0.12.7", features = ["json"] } serde = { version = "1.0.204", features = ["derive"] } serde_json = "1.0.121" serde_repr = "0.1.19" thiserror = "1.0.63" tokio = "1.39.3" tokio-tungstenite = { version = "0.23.1", features = ["tokio-rustls", "rustls-tls-native-roots"] } tracing = "0.1.40" tungstenite = { version = "0.23.0", optional = true, features = ["rustls-tls-native-roots"] }