-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtwine.cabal
35 lines (31 loc) · 1.23 KB
/
twine.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
name: twine
version: 0.1.5
synopsis: very simple template language
description: very simple template language
category: Text
license: BSD3
license-file: LICENSE
author: James Sanders
maintainer: [email protected]
homepage: http://twine.james-sanders.com
build-depends: base
build-type: Simple
Cabal-Version: >= 1.2
Library
hs-source-dirs: src
Build-Depends: base >= 4 && < 5
, mtl
, bytestring >= 0.9.1.5
, filepath >= 1.1.0.3
, parsec >= 3
, containers >= 0.3
, convertible
Exposed-modules: Text.Twine
Other-modules: Text.Twine.Parser
,Text.Twine.Parser.Types
,Text.Twine.Interpreter
,Text.Twine.Interpreter.Interface
,Text.Twine.Interpreter.ContextWriter
,Text.Twine.Interpreter.Types
,Text.Twine.Interpreter.Builtins
ghc-options: -O2