-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlive-reload.cabal
32 lines (29 loc) · 1.15 KB
/
live-reload.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
Name: live-reload
Version: 0.1
Synopsis: Serves static content over HTTP with live reload
Description: Project Description Here
License: MIT
Author: Alexey Kreshchuk
Maintainer: [email protected]
Stability: Experimental
Category: Web
Build-type: Simple
Cabal-version: >=1.2
Executable live-reload
hs-source-dirs: src
main-is: Main.hs
Build-depends:
base >= 4 && < 5,
bytestring >= 0.9.1 && < 0.11,
MonadCatchIO-transformers >= 0.2.1 && < 0.4,
mtl >= 2 && < 3,
snap-core >= 0.9 && < 0.10,
snap-server >= 0.9 && < 0.10,
websockets-snap >= 0.9 && < 0.10,
websockets >= 0.9 && < 0.10,
fsnotify >= 0.1 && < 0.2,
text >= 0.10 && < 1.3,
system-filepath >= 0.4 && < 0.5,
directory >= 1.2 && < 1.3,
filepath >= 1.3 && < 1.4
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2