-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathxml-to-json-fast.cabal
More file actions
40 lines (36 loc) · 1.48 KB
/
Copy pathxml-to-json-fast.cabal
File metadata and controls
40 lines (36 loc) · 1.48 KB
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
name: xml-to-json-fast
version: 2.1.0
synopsis: Fast, light converter of xml to json capable of handling huge xml files
description:
Assumes input xml is valid, which allows constant memory usage (<4 MB) and faster parsing. For a fully-featured, but memory-bound converter see the xml-to-json package.
.
If not input file is given, reads from stdin (so it can be used in a unix pipe chain).
license: MIT
license-file: LICENSE
author: Noam Lewis
maintainer: jones.noamle@gmail.com
homepage: https://github.com/sinelaw/xml-to-json-fast
bug-reports: https://github.com/sinelaw/xml-to-json-fast/issues
copyright: Copyright Noam Lewis, 2014
category: Web, XML, JSON
build-type: Simple
cabal-version: >=1.8
Extra-Source-Files:
README.md
source-repository head
type: git
location: https://github.com/sinelaw/xml-to-json-fast.git
library
exposed-modules: Text.XML.JSON.StreamingXmlToJson
extensions: CPP
hs-source-dirs: src
build-depends: base >= 4.5.0 && < 5, tagsoup, text
ghc-options: -Wall -O2
Ghc-Prof-Options: -rtsopts -prof -auto-all -caf-all
executable xml-to-json-fast
main-is: Main.hs
hs-source-dirs: src-exec
extensions: CPP
build-depends: base >= 4.5.0 && < 5, xml-to-json-fast, process, directory
ghc-options: -Wall -O2
Ghc-Prof-Options: -rtsopts -prof -auto-all -caf-all