diff options
author | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-01-14 22:17:25 -0500 |
---|---|---|
committer | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-01-14 22:17:25 -0500 |
commit | 7381c94f47c76833972565ee8d15d86216b214ce (patch) | |
tree | 38ddadda59a3808422fc432d37b886c456adcb1d /pipes-text.cabal | |
parent | ca6f90a05bee6471d6837d629ddaee9b0a75bd50 (diff) | |
parent | 3694350ac7b9c42fd64e0092a74cf0471a080058 (diff) | |
download | text-pipes-7381c94f47c76833972565ee8d15d86216b214ce.tar.gz text-pipes-7381c94f47c76833972565ee8d15d86216b214ce.tar.zst text-pipes-7381c94f47c76833972565ee8d15d86216b214ce.zip |
merge home made decodeUtf8
Diffstat (limited to 'pipes-text.cabal')
-rw-r--r-- | pipes-text.cabal | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pipes-text.cabal b/pipes-text.cabal index e79f168..b4388be 100644 --- a/pipes-text.cabal +++ b/pipes-text.cabal | |||
@@ -12,7 +12,9 @@ build-type: Simple | |||
12 | cabal-version: >=1.10 | 12 | cabal-version: >=1.10 |
13 | 13 | ||
14 | library | 14 | library |
15 | exposed-modules: Pipes.Text, Pipes.Text.Parse | 15 | c-sources: cbits/cbits.c |
16 | include-dirs: include | ||
17 | exposed-modules: Pipes.Text, Pipes.Text.Parse, Pipes.Text.Internal | ||
16 | -- other-modules: | 18 | -- other-modules: |
17 | other-extensions: RankNTypes | 19 | other-extensions: RankNTypes |
18 | build-depends: base >= 4 && < 5 , | 20 | build-depends: base >= 4 && < 5 , |
@@ -23,6 +25,9 @@ library | |||
23 | pipes-bytestring >= 1.0 && < 1.2, | 25 | pipes-bytestring >= 1.0 && < 1.2, |
24 | transformers >= 0.3 && < 0.4, | 26 | transformers >= 0.3 && < 0.4, |
25 | text >=0.11 && < 0.12, | 27 | text >=0.11 && < 0.12, |
26 | bytestring >=0.10 && < 0.11 | 28 | bytestring >=0.10 && < 0.11, |
29 | vector, | ||
30 | void | ||
27 | -- hs-source-dirs: | 31 | -- hs-source-dirs: |
28 | default-language: Haskell2010 \ No newline at end of file | 32 | default-language: Haskell2010 |
33 | ghc-options: -O2 | ||