-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 960 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 960 Bytes
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 = "dns-cli"
version = "1.0.24"
edition = "2021"
authors = ["Hugo Persson <hugo.e.persson@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A command line tool for managing DNS records, currenty support is Cloudflare"
readme = "README.md"
homepage = "https://github.com/Hugo-Persson/dns-cli-tools"
repository = "https://github.com/Hugo-Persson/dns-cli-tools"
keywords = ["cli", "cloudflare", "dns"]
categories = ["command-line-utilities"]
[[bin]]
name = "dns-cli"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.23", features = ["derive"] }
clap_complete = "4.3"
cloudflare = "0.11.0"
home = "0.5.5"
inquire = "0.7.5"
lazy_static = "1.4.0"
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
tokio = { version = "1.32.0", features = ["full"] }