-
Notifications
You must be signed in to change notification settings - Fork 38
/
HAD.cabal
35 lines (33 loc) · 1.11 KB
/
HAD.cabal
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
-- Initial HAD.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: HAD
version: 0.3.0.1
synopsis: The "1 Haskell A Day questions" proposed on twitter
gathered on a git
-- description:
homepage: https://github.com/1HaskellADay/1HAD
license: MIT
license-file: LICENSE
author: Nicolas Biri
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
cabal-version: >=1.8
executable 1had
main-is: Main.hs
build-depends: base
, time
, doctest
, QuickCheck
, filepath
, process
, transformers
, aeson
, aeson-pretty
, bytestring
, http-conduit
, mtl
, postgresql-simple
, containers
hs-source-dirs: src, exercises/HAD