-
Notifications
You must be signed in to change notification settings - Fork 1
/
sax.cabal
61 lines (55 loc) · 1.76 KB
/
sax.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
-- Initial sax.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: sax
version: 0.1.0.0
synopsis: Monadic streaming XML parser
description: Fast monadic streaming XML parser. 🎷
It feels and looks like any other parser combinators library.
license: BSD3
license-file: LICENSE
author: Denis Redozubov
maintainer: [email protected]
-- copyright
homepage: https://github.com/dredozubov/sax-parser
category: Text
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: SAX.Streaming
, SAX
-- other-modules:
-- other-extensions:
build-depends: base >=4.9 && <4.11
, deepseq
, bytestring
, mtl
, streaming
, text
, tracy
, xeno >= 0.3.3
hs-source-dirs: src
ghc-options: -Wall
-funbox-strict-fields
default-language: Haskell2010
test-suite xeno-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base
, sax
, hspec
, bytestring
, tracy
ghc-options: -Wall
default-language: Haskell2010
-- benchmark sax-bench
-- type: exitcode-stdio-1.0
-- hs-source-dirs: bench
-- main-is: Main.hs
-- build-depends: base
-- , xeno
-- , criterion
-- , bytestring
-- , deepseq
-- default-language: Haskell2010