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
|
cabal-version: 3.4
name: abuilder
version: 0.1.0.0
license: Apache-2.0
license-file: LICENSE
maintainer: aforemny@posteo.de
author: Alexander Foremny
build-type: Simple
extra-doc-files: CHANGELOG.md
executable abuilder
main-is: Main.hs
hs-source-dirs: app
default-language: GHC2021
ghc-options: -Wall -threaded
build-depends:
base,
bytestring,
containers,
directory,
filepath,
gitlib,
gitlib-libgit2,
hinotify,
mtl,
split,
stm,
string-interpolate,
tagged,
temporary,
text,
typed-process,
utf8-string
|