1
0
mirror of https://github.com/vbrandl/bind9-api.git synced 2024-11-22 17:43:50 +01:00
bind9-api/server/Cargo.toml

19 lines
479 B
TOML
Raw Normal View History

2018-07-08 01:08:56 +02:00
[package]
name = "bind9-api"
version = "0.1.0"
authors = ["Valentin Brandl <vbrandl@riseup.net>"]
description = "Web API to create, update and remove DNS entries in bind9"
2018-07-08 12:01:11 +02:00
license = "MIT/Apache-2.0"
2018-07-08 01:08:56 +02:00
[dependencies]
2018-07-08 21:33:57 +02:00
actix-web = { version = "0.6.14", features=["alpn"] }
2018-07-08 01:08:56 +02:00
clap = "2.31.2"
crypto = { path = "../crypto" }
data = { path = "../data" }
failure = "0.1.1"
futures = "0.1.21"
log = "0.4.3"
2018-07-08 21:33:57 +02:00
openssl = "0.10"
2018-07-08 01:08:56 +02:00
pretty_env_logger = "0.2.3"
serde = "1.0.69"
serde_json = "1.0.22"