blob: 5264f64efad896ace1520ad88f99fc5f2f8c1ee3 (
plain)
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
|
cabal-version: 2.4
name: autotypes
version: 0.1.0.0
maintainer: aforemny@posteo.de
author: Alexander Foremny
extra-source-files: CHANGELOG.md
library
exposed-modules:
AutoTypes
AutoTypes.Unify
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -fno-warn-x-partial
build-depends:
aeson,
aeson-pretty,
aeson-qq,
base,
bytestring,
containers,
filepath,
text,
time,
vector
executable autotypes
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
build-depends:
aeson,
autotypes,
base,
bytestring,
filepath
|