-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 872 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
[package]
name = "cf-wagdns"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/hdert/cf-wagdns"
homepage = "https://github.com/hdert/cf-wagdns"
readme = "README.md"
description = "A simple Cloudflare dns record updater script, with helpful error messages and simple configuration, and the ability to update Access Group rules."
authors = ["Justin Muirhead <justintmqwerty at gmail dot com>"]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["blocking", "json"] }
log = {version = "0.4", features = ["release_max_level_info"] }
envfile = "0.2"
serde_json = "1.0"
simplelog = "0.12"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.32", features = ["full"] }
error-stack = "0.4"