aboutsummaryrefslogtreecommitdiff
path: root/kazbek.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'kazbek.cabal')
-rw-r--r--kazbek.cabal32
1 files changed, 23 insertions, 9 deletions
diff --git a/kazbek.cabal b/kazbek.cabal
index a22dee4..74d7f2a 100644
--- a/kazbek.cabal
+++ b/kazbek.cabal
@@ -11,31 +11,45 @@ build-type: Simple
common warnings
ghc-options: -Wall
-
-executable tea-cleaner
- import: warnings
- main-is: Main.hs
default-extensions:
TemplateHaskell,
OverloadedStrings,
QuasiQuotes,
DuplicateRecordFields,
RecordWildCards
+ default-language: GHC2024
+ build-depends:
+ aeson ^>= 2.2.3,
+ base >= 4.20 && < 5,
+ bytestring ^>= 0.12.2,
+ text ^>= 2.1
+
+executable tea-cleaner
+ import: warnings
+ main-is: Main.hs
other-modules:
TeaCleaner.Client
TeaCleaner.Configuration
TeaCleaner.Filter
TeaCleaner.Options
build-depends:
- aeson ^>= 2.2.3,
- base >= 4.20 && < 5,
- bytestring ^>= 0.12.2,
modern-uri ^>= 0.3.6,
optparse-applicative ^>= 0.19.0,
req ^>= 3.13,
time >= 1.9 && < 2,
- text ^>= 2.1,
tomland ^>= 1.3.3,
vector ^>= 0.13.2
hs-source-dirs: tea-cleaner
- default-language: GHC2024
+
+executable locopy
+ import: warnings
+ main-is: Main.hs
+ hs-source-dirs: locopy
+ other-modules:
+ Locopy.CommandLine
+ Locopy.Wordpress
+ build-depends:
+ directory ^>= 1.3.9,
+ filepath ^>= 1.5.4,
+ optparse-applicative ^>= 0.19,
+ process ^>= 1.6.26