38 lines
842 B
Plaintext
38 lines
842 B
Plaintext
|
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 Eugen Wissner
|
||
|
build-type: Simple
|
||
|
|
||
|
common warnings
|
||
|
ghc-options: -Wall
|
||
|
|
||
|
executable tea-cleaner
|
||
|
import: warnings
|
||
|
main-is: Main.hs
|
||
|
default-extensions:
|
||
|
TemplateHaskell,
|
||
|
OverloadedStrings,
|
||
|
QuasiQuotes,
|
||
|
DuplicateRecordFields
|
||
|
other-modules:
|
||
|
TeaCleaner.Client
|
||
|
TeaCleaner.Options
|
||
|
TeaCleaner.Types
|
||
|
build-depends:
|
||
|
aeson ^>= 2.2.3,
|
||
|
base ^>=4.20.0.0,
|
||
|
bytestring ^>= 0.12.2,
|
||
|
modern-uri ^>= 0.3.6,
|
||
|
req ^>= 3.13,
|
||
|
time >= 1.9 && < 2,
|
||
|
text ^>= 2.1,
|
||
|
vector ^>= 0.13.2
|
||
|
hs-source-dirs: tea-cleaner
|
||
|
default-language: GHC2024
|