forked from Scratchcat1/pi-hole-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 876 Bytes
/
Cargo.toml
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
[package]
name = "pi-hole-api"
version = "0.4.0"
authors = ["Connor Holloway <c.holloway314@outlook.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "Library for interacting with the Pi Hole PHP API"
repository = "https://github.com/Scratchcat1/pi-hole-api"
keywords = ["pi-hole", "api"]
categories = ["api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.137", features = ["derive"] }
ureq = { version = "2.5", features = ["json"] }
url = "2.2"
serde_json = "1.0.81"
chrono = { version = "0.4", features = ["serde"] }
serde_repr = "0.1"
strum = { version = "0.24", features = ["derive"] }
serde_tuple = "0.5"
num-derive = "0.3.3"
num-traits = "0.2.15"
[dev-dependencies]
trust-dns-resolver = "0.21.2"
test-context = "0.1.3"
serial_test = "0.8.0"