-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 792 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "tibber"
version = "0.7.0"
edition = "2021"
authors = ["Frank A. Stevenson <root@localhost>"]
description = "A minimal set of bindings to Tibber graphql API"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/snakehand/tibber.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "^1.0.78", features = ["derive"] }
reqwest = { version = "0.11", features = ["json", "blocking"], optional = true }
graphql_client = { version = "0.14.0" }
chrono = "0.4.19"
ureq-crate = { package = "ureq", version = "2.10.1", features = ["json"], optional = true }
[features]
default = ["reqwest", "graphql_client/reqwest-blocking"]
#default = ["ureq"]
ureq = ["ureq-crate"]