-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
39 lines (34 loc) · 893 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
32
33
34
35
36
37
38
39
[package]
name = "pihole-switch"
version = "1.1.4"
authors = ["devmatteini <[email protected]>"]
edition = "2021"
description = "A command line tool to enable/disable your pihole"
documentation = "https://github.com/devmatteini/pihole-switch"
readme = "README.md"
homepage = "https://github.com/devmatteini/pihole-switch"
repository = "https://github.com/devmatteini/pihole-switch"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["pihole", "cli"]
[[bin]]
name = "phs"
path = "src/main.rs"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
[dependencies]
serde_json = "1.0.91"
clap = { version = "4.1.1", features = ["derive"] }
console = "0.15.4"
[dependencies.ureq]
version = "2.6.1"
default-features = false
features = ["json"]
[dev-dependencies]
serial_test = "0.10.0"
serde_json = "1.0.85"
url = "2.3.1"
assert_cmd = "2.0.8"
predicates = "2.1.5"