Neshura
3c4e55d126
All checks were successful
Run Tests on Code / run-tests (push) Successful in 27s
Build and release binary file and packages / test (push) Successful in 10s
Build and release binary file and packages / build (push) Successful in 27s
Build and release binary file and packages / upload-generic-package (push) Successful in 2s
Build and release binary file and packages / upload-debian-package (push) Successful in 1s
Build and release binary file and packages / create-release (push) Successful in 8s
37 lines
970 B
TOML
37 lines
970 B
TOML
[package]
|
|
authors = ["Neshura"]
|
|
name = "cloudflare-dns-updater"
|
|
version = "1.1.5"
|
|
edition = "2021"
|
|
description = "Application for automatically updating Cloudflare DNS records"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[package.metadata.deb]
|
|
extended-description = "Application for automatically updating Cloudflare DNS records"
|
|
maintainer-scripts = "debian/"
|
|
revision = "1"
|
|
depends = ["libc6", "libssl3", "systemd"]
|
|
assets = [
|
|
[
|
|
"target/release/cloudflare-dns-updater",
|
|
"/usr/local/bin/cloudflare-dns-updater",
|
|
"755",
|
|
]
|
|
]
|
|
systemd-units = { enable = false }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "^0.4.23"
|
|
reqwest = { version = "^0.11.14", features = ["blocking", "json"] }
|
|
serde = "^1.0.152"
|
|
serde_derive = "^1.0.152"
|
|
serde_json = "^1.0.93"
|
|
strum_macros = "^0.25.3"
|
|
log = "^0.4.20"
|
|
systemd-journal-logger = "^2.1.1"
|
|
confy = "^0.5.1"
|
|
ipnet = "^2.9.0"
|
|
url = "2.5.0"
|