-
Notifications
You must be signed in to change notification settings - Fork 13
/
htoml.cabal
89 lines (85 loc) · 3.56 KB
/
htoml.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: htoml
version: 1.0.0.3
synopsis: Parser for TOML files
description: TOML is an obvious and minimal format for config files.
.
This package provides a TOML parser,
build with the Parsec library. It exposes a JSON
interface using the Aeson library.
homepage: https://github.com/cies/htoml
bug-reports: https://github.com/cies/htoml/issues
license: BSD3
license-file: LICENSE
copyright: (c) 2013-2016 Cies Breijs
author: Cies Breijs
maintainer: Cies Breijs <cies % kde ! nl>
category: Data, Text, Parser, Configuration, JSON, Language
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md
, CHANGES.md
, test/BurntSushi/fetch-toml-tests.sh
, test/BurntSushi/valid/*.toml
, test/BurntSushi/valid/*.json
, test/BurntSushi/invalid/*.toml
, benchmarks/example.toml
, benchmarks/repeated.toml
source-repository head
type: git
location: https://github.com/cies/htoml.git
library
exposed-modules: Text.Toml
, Text.Toml.Parser
, Text.Toml.Types
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.3 && < 5
, parsec >= 3.1.2 && < 4
, containers >= 0.5
, unordered-containers >= 0.2
, vector >= 0.10
, aeson >= 0.8
, text >= 1.0 && < 2
, time -any
, old-locale -any
test-suite htoml-test
hs-source-dirs: test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
main-is: Test.hs
other-modules: BurntSushi
, Text.Toml.Parser.Spec
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base
, parsec
, containers
, unordered-containers
, vector
, aeson
, text
, time
-- from here non-lib deps
, htoml
, bytestring
, file-embed
, tasty
, tasty-hspec
, tasty-hunit
benchmark benchmarks
hs-source-dirs: benchmarks .
ghc-options: -O2 -Wall -threaded -rtsopts -with-rtsopts=-N
main-is: Benchmarks.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base
, parsec
, containers
, unordered-containers
, vector
, aeson
, text
, time
-- from here non-lib deps
, htoml
, criterion