-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 809 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
[package]
name = "ddns-sync"
description = "Utility to periodictly update A and AAAA records"
version = "0.2.0"
edition = "2021"
authors = ["Szymon Kozioł <contact@critteros.dev>"]
[workspace]
members = ["cloudflare-adapter"]
[dependencies]
log = "0.4.20"
pretty_env_logger = "0.5.0"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.113", features = ["derive"] }
serde_json = "1.0.113"
reqwest = { version = "0.12.4", features = ["json"] }
thiserror = "1.0.57"
clap = { version = "4.5.0", features = ["derive", "env"] }
dotenv = "0.15.0"
cloudflare-adapter = { path = "cloudflare-adapter" }
anyhow = { version = "1.0.86", features = ["backtrace"] }
tokio-cron-scheduler = { version = "*", features = ["signal"] }
ctrlc = "3.4"
[dev-dependencies]
mockito = "1.2.0"
rstest = "0.20.0"