1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
cabal-version: 3.0
name: kazbek
version: 1.0
synopsis: Various helper programs
license: MPL-2.0
license-file: LICENSE
author: Eugen Wissner
maintainer: belka@caraus.de
copyright: (c) 2025-2026 Eugen Wissner
build-type: Simple
common warnings
ghc-options: -Wall
default-extensions:
TemplateHaskell,
OverloadedStrings,
QuasiQuotes,
DuplicateRecordFields,
RecordWildCards
default-language: GHC2024
build-depends:
aeson ^>= 2.2.3,
base >= 4.20 && < 5,
bytestring ^>= 0.12.2,
directory ^>= 1.3.9,
filepath ^>= 1.5.4,
process ^>= 1.6.26,
text ^>= 2.1
executable tea-cleaner
import: warnings
main-is: Main.hs
other-modules:
TeaCleaner.Client
TeaCleaner.Configuration
TeaCleaner.Filter
TeaCleaner.Options
build-depends:
modern-uri ^>= 0.3.6,
optparse-applicative ^>= 0.19.0,
req ^>= 3.13,
time >= 1.9 && < 2,
tomland ^>= 1.3.3,
vector ^>= 0.13.2
hs-source-dirs: tea-cleaner
executable locopy
import: warnings
main-is: Main.hs
hs-source-dirs: locopy
other-modules:
Locopy.CommandLine
Locopy.Wordpress
build-depends:
optparse-applicative ^>= 0.19
executable 7digital
import: warnings
main-is: Main.hs
hs-source-dirs: 7digital
build-depends:
containers >= 0.7 && < 0.9,
zip ^>= 2.2
|