peach-dyndns-server/Cargo.toml

35 lines
964 B
TOML
Raw Normal View History

2019-04-19 01:00:06 +00:00
[package]
name = "peach-dyndns-server"
2021-12-18 15:34:55 +00:00
version = "0.1.2"
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"
2021-05-22 17:36:34 +00:00
jsonrpc-core = "11"
jsonrpc-http-server = "11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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-22 17:36:34 +00:00
snafu = "0.6"
env_logger = "0.6"
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"],
["debian/reloadbind", "usr/bin/", "755"],
["debian/bindctl", "/etc/sudoers.d/bindctl", "655"],
2021-12-18 23:13:52 +00:00
["templates/*", "/srv/peach-dyndns-server/templates/", "644"],
]