peach-dyndns-server/Cargo.toml

37 lines
1006 B
TOML
Raw Normal View History

2019-04-19 01:00:06 +00:00
[package]
name = "peach-dyndns-server"
2019-04-19 01:00:06 +00:00
version = "0.1.0"
2021-04-30 11:18:44 +00:00
authors = ["Michael Williams <michael.williams@enspiral.com>", "Max Fowler <notplants@mfowler.info>"]
2019-04-19 01:00:06 +00:00
edition = "2018"
[dependencies]
2019-05-07 11:27:55 +00:00
clap-log-flag = "0.2"
clap-verbosity-flag = "0.2"
log = "0.4"
futures = "0.3.1"
2019-05-07 11:27:55 +00:00
nest = "1"
structopt = "0.2"
tokio = { version = "1.5.0", features = ["full"] }
2019-05-07 10:40:36 +00:00
tokio-executor = "0.1"
tokio-tcp = "0.1.4"
tokio-udp = "0.1.4"
trust-dns-server = "0.20.2"
trust-dns-client = "0.20.2"
2021-04-30 11:18:44 +00:00
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master" }
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", branch = "master" }
serde = "1.0.125"
2021-05-10 11:20:43 +00:00
dotenv = "0.15.0"
tera = "1"
2021-05-18 16:49:01 +00:00
regex = "1"
2021-05-10 11:20:43 +00:00
[package.metadata.deb]
depends = "$auto"
extended-description = """\
peach-dyndns is an http API to create dynamic-dns configurations for bind9."""
maintainer-scripts="debian"
systemd-units = { unit-name = "peach-dyndns-server" }
assets = [
["target/release/peach-dyndns-server", "usr/bin/", "755"],
]