-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (26 loc) · 868 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
[package]
name = "dnsup"
version = "0.1.0"
edition = "2021"
authors = ["Manoj Chandrashekar <[email protected]>"]
license = "MIT"
description = "A tool to keep domains up-to-date with dynamic IPs"
readme = "README.md"
homepage = "https://github.com/manojchandrashekar/dnsup"
repository = "https://github.com/manojchandrashekar/dnsup"
keywords = ["cli", "dns", "dynamic-ip"]
categories = ["command-line-utilities"]
[dependencies]
dotenv = "0.15.0"
argparse = "0.2.2"
dirs = "4.0"
toml = "0.5.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11.10", features = ["blocking", "json"] }
tokio = { version = "1.17.0", features = ["full"] }
openssl-sys = "0.9"
openssl = { version = "0.10", features = ["vendored"] }
log = "0.4.17"
simple_logger = { version = "2.1.0", features = ["stderr"] }
anyhow = "1.0.57"