2020-11-11 10:52:09 -08:00
|
|
|
;;;; backplane-dns.asd
|
2020-11-04 12:34:28 -08:00
|
|
|
|
2020-11-11 09:39:00 -08:00
|
|
|
(asdf:defsystem #:backplane-dns
|
|
|
|
:description "Server to listen on Fudo backplane for DNS updates"
|
|
|
|
:author "Niten <niten@fudo.org>"
|
2020-11-04 12:34:28 -08:00
|
|
|
:license "Specify license here"
|
2020-11-11 09:39:00 -08:00
|
|
|
:version "0.1.0"
|
2020-11-04 12:34:28 -08:00
|
|
|
:serial t
|
|
|
|
:depends-on (:alexandria
|
|
|
|
:arrows
|
2020-11-13 11:11:58 -08:00
|
|
|
:cl-json
|
2020-11-16 20:46:21 -08:00
|
|
|
:cl-postgres
|
2020-11-04 12:34:28 -08:00
|
|
|
:cl-ppcre
|
|
|
|
:cl+ssl
|
|
|
|
:cl-xmpp
|
|
|
|
:cl-xmpp-tls
|
|
|
|
:postmodern
|
|
|
|
:trivia)
|
|
|
|
:components ((:file "package")
|
2020-11-13 11:11:58 -08:00
|
|
|
(:file "backplane-dns")
|
|
|
|
(:file "backplane-server")))
|