0c6eb9a9eb
To make debugging easier, this switches to env_logger and the log crate. This helps with getting to the output of the underlying crates this builds on. BREAKING CHANGE: this changes the output, so if you parse the output in your scripts, then this might break it.
26 lines
746 B
TOML
26 lines
746 B
TOML
[package]
|
|
name = "cloudflare-ddns"
|
|
version = "0.2.1"
|
|
authors = ["Rostislav Raykov <z@zbrox.org>"]
|
|
edition = "2018"
|
|
description = "A simple CLI tool to use Cloudflare's free DDNS service"
|
|
repository = "https://github.com/zbrox/cloudflare-ddns"
|
|
homepage = "https://github.com/zbrox/cloudflare-ddns"
|
|
keywords = ["cloudflare", "ddns", "cli"]
|
|
categories = ["command-line-utilities"]
|
|
license = "MIT"
|
|
documentation = "https://github.com/zbrox/cloudflare-ddns"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
quicli = "0.4"
|
|
structopt = "0.3.12"
|
|
reqwest= { version = "0.10.4", features = ["blocking", "json"] }
|
|
serde = "1.0.105"
|
|
serde_json = "1.0.48"
|
|
toml = "0.5.6"
|
|
human-panic = "1.0.2"
|
|
serde_derive = "1.0.105"
|
|
anyhow = "1.0.27"
|
|
env_logger = "0.7.1"
|
|
log = "0.4.8"
|