forked from ryantrinkle/memoise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
memoise.cabal
29 lines (28 loc) · 1.12 KB
/
memoise.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
Name: memoise
Version: 0.9
License: BSD3
Author: Ryan Trinkle
Maintainer: [email protected]
Stability: Experimental
Category: Web
Build-type: Simple
Cabal-version: >=1.2
Synopsis: The world's laziest hyperlink shortener
Description:
memoi.se is a URL shortener built in Haskell with the Snap framework
Executable memoise
Hs-source-dirs: src
Main-is: Main.hs
Build-depends: base >= 4 && < 5
, snap >= 0.12 && < 0.13
, snap-core >= 0.9 && < 0.10
, snap-extras >= 0.6 && < 0.7
, heist >= 0.12 && < 0.13
, lens >= 3.9 && < 3.10
, text >= 0.11 && < 0.12
, snaplet-postgresql-simple >= 0.4 && < 0.5
GHC-options: -threaded -O2
Extensions: OverloadedStrings
, TemplateHaskell
, FlexibleInstances
, ScopedTypeVariables