-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathihp-ssc.cabal
58 lines (57 loc) · 1.91 KB
/
ihp-ssc.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
cabal-version: 2.2
name: ihp-ssc
version: 1.3.0
synopsis: Server Side Components for IHP
description: IHP Server-Side Components provide a toolkit for building interactive client-side functionality without needing to write too much JavaScript.
license: NONE
author: digitally induced GmbH
maintainer: hello@digitallyinduced.com
-- copyright:
-- category:
build-type: Simple
library
default-language: Haskell2010
default-extensions:
OverloadedStrings
, NoImplicitPrelude
, ImplicitParams
, Rank2Types
, NamedFieldPuns
, TypeSynonymInstances
, FlexibleInstances
, DisambiguateRecordFields
, DuplicateRecordFields
, OverloadedLabels
, FlexibleContexts
, DataKinds
, QuasiQuotes
, TypeFamilies
, PackageImports
, ScopedTypeVariables
, RecordWildCards
, TypeApplications
, DataKinds
, InstanceSigs
, DeriveGeneric
, MultiParamTypeClasses
, TypeOperators
, DeriveDataTypeable
, DefaultSignatures
, BangPatterns
, FunctionalDependencies
, PartialTypeSignatures
, BlockArguments
, LambdaCase
, StandaloneDeriving
, TemplateHaskell
, OverloadedRecordDot
hs-source-dirs: .
build-depends: ihp, aeson, megaparsec, bytestring, wai, websockets, ihp-hsx, base, string-conversions, basic-prelude, text, blaze-html, attoparsec
exposed-modules:
IHP.ServerSideComponent.Types
, IHP.ServerSideComponent.ViewFunctions
, IHP.ServerSideComponent.RouterFunctions
, IHP.ServerSideComponent.ControllerFunctions
, IHP.ServerSideComponent.Controller.ComponentsController
, IHP.ServerSideComponent.HtmlDiff
, IHP.ServerSideComponent.HtmlParser