diff options
| author | Fynn Godau | 2025-12-27 23:48:17 +0100 |
|---|---|---|
| committer | stuebinm | 2026-01-01 19:33:30 +0100 |
| commit | 78ea2243c6b9c7da1591ca5bd3db0b2ba2a8f44b (patch) | |
| tree | 9b4bcff2a5dc83665037bf6c2fdd01e006455b1f /bahnhof-name.cabal | |
| parent | edcbdbbd763bd5eedc2b45078546b1552bc8e85c (diff) | |
bahnhof-dns: new application
* New executable `bahnhof-dns`, which serves TXT records over DNS
at `*.ril100.` and `*.leitpunkt.`
* Extract definitions used by both executables into new Util module
(slightly amended by stuebinm)
Diffstat (limited to 'bahnhof-name.cabal')
| -rw-r--r-- | bahnhof-name.cabal | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/bahnhof-name.cabal b/bahnhof-name.cabal index 02a7344..bd20dc0 100644 --- a/bahnhof-name.cabal +++ b/bahnhof-name.cabal @@ -20,8 +20,9 @@ executable bahnhof-name import: warnings main-is: Main.hs + other-modules: Util hs-source-dirs: app - build-depends: base ^>=4.18 + build-depends: base ^>=4.19 , fuzzyset >= 0.3.0 , fuzzyfind , text @@ -39,3 +40,22 @@ executable bahnhof-name , time default-language: GHC2021 ghc-options: -threaded -with-rtsopts=--nonmoving-gc + +executable bahnhof-dns + import: warnings + + main-is: BahnhofDNS.hs + other-modules: Util + hs-source-dirs: app + build-depends: base ^>=4.19 + , fuzzyset >= 0.3.0 + , fuzzyfind + , text + , vector + , cassava + , bytestring + , containers + , dns + , network + default-language: GHC2021 + ghc-options: -threaded -with-rtsopts=--nonmoving-gc |
