26 lines
572 B
Plaintext
26 lines
572 B
Plaintext
cabal-version: 3.4
|
|
name: cli
|
|
version: 0.1.0.0
|
|
license: BSD-2-Clause
|
|
license-file: LICENSE
|
|
maintainer: aforemny@posteo.de
|
|
author: Alexander Foremny
|
|
build-type: Simple
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
executable cli
|
|
main-is: Main.hs
|
|
hs-source-dirs: app
|
|
other-modules: API.Collection
|
|
default-language: GHC2021
|
|
ghc-options: -Wall
|
|
build-depends:
|
|
aeson,
|
|
backend,
|
|
base,
|
|
bytestring,
|
|
filepath,
|
|
optparse-applicative,
|
|
sh,
|
|
text
|