2025-01-24 22:38:58 +01:00
|
|
|
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,
|
2025-01-26 10:17:33 +01:00
|
|
|
DuplicateRecordFields,
|
|
|
|
RecordWildCards
|
2025-01-24 22:38:58 +01:00
|
|
|
other-modules:
|
|
|
|
TeaCleaner.Client
|
2025-01-26 10:17:33 +01:00
|
|
|
TeaCleaner.CommandLine
|
|
|
|
TeaCleaner.Filter
|
2025-01-24 22:38:58 +01:00
|
|
|
TeaCleaner.Options
|
|
|
|
build-depends:
|
|
|
|
aeson ^>= 2.2.3,
|
2025-01-30 21:37:01 +01:00
|
|
|
base >= 4.20 && < 5,
|
2025-01-24 22:38:58 +01:00
|
|
|
bytestring ^>= 0.12.2,
|
|
|
|
modern-uri ^>= 0.3.6,
|
2025-01-26 10:17:33 +01:00
|
|
|
optparse-applicative ^>= 0.18.1,
|
2025-01-24 22:38:58 +01:00
|
|
|
req ^>= 3.13,
|
|
|
|
time >= 1.9 && < 2,
|
|
|
|
text ^>= 2.1,
|
|
|
|
vector ^>= 0.13.2
|
|
|
|
hs-source-dirs: tea-cleaner
|
|
|
|
default-language: GHC2024
|