-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPersistentTodo.cabal
More file actions
33 lines (31 loc) · 1.1 KB
/
PersistentTodo.cabal
File metadata and controls
33 lines (31 loc) · 1.1 KB
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: 2.4
-- Initial package description 'PersistentTodo.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: PersistentTodo
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: MIT
license-file: LICENSE
author: Drew Fenwick
maintainer: drew.e.fenwick+github@gmail.com
-- copyright:
-- category:
-- extra-source-files: CHANGELOG.md
executable PersistentTodo
main-is: Main.hs
other-modules: PersistentTodo.Task
PersistentTodo.Handler
PersistentTodo.Handler.Command
-- other-extensions:
build-depends: base ^>= 4.12.0.0,
opaleye ^>= 0.6.7004,
optparse-applicative ^>= 0.15.1,
product-profunctors ^>= 0.10.0,
monads-tf ^>= 0.1.0,
postgresql-simple ^>= 0.6.2,
profunctors == 5.5.2,
hs-source-dirs: src
default-language: Haskell2010