-
Notifications
You must be signed in to change notification settings - Fork 13
/
snap-loader-dynamic.cabal
72 lines (60 loc) · 1.85 KB
/
snap-loader-dynamic.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: snap-loader-dynamic
version: 1.0.0.2
synopsis: Snap dynamic loader
description: Snap Framework dynamic code loader for development mode
license: BSD3
license-file: LICENSE
author: Carl Howells
maintainer: snap@snapframework.com
build-type: Simple
cabal-version: >= 1.10
homepage: http://snapframework.com/
category: Web, Snap
Tested-With: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.2
extra-source-files:
CONTRIBUTORS,
LICENSE,
README.md,
README.SNAP.md
Library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Snap.Loader.Dynamic
other-modules:
Snap.Loader.Dynamic.Evaluator,
Snap.Loader.Dynamic.Signal,
Snap.Loader.Dynamic.TreeWatcher
build-depends:
base >= 4 && < 5,
directory-tree >= 0.10 && < 0.13,
mtl > 2.0 && < 2.3,
snap-core >= 1.0 && < 1.1,
time >= 1.1 && < 1.10,
template-haskell >= 2.2 && < 3
if impl(ghc >= 7.2.0)
build-depends:
hint >= 0.3.3.1 && < 0.10
else
build-depends:
hint >= 0.3.3.1 && < 0.3.3.5
if impl(ghc >= 7.6.0)
build-depends:
directory >= 1.2 && < 1.4
else
build-depends:
directory >= 1.0 && < 1.4,
old-time >= 1.0 && < 1.2
if !os(windows)
build-depends:
unix >= 2.2.0.0 && < 2.8
default-extensions: CPP
if impl(ghc >= 6.12.0)
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-orphans -fno-warn-unused-do-bind
else
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-orphans
source-repository head
type: git
location: git://github.com/snapframework/snap-loader-dynamic.git