-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkdl-hs.cabal
More file actions
101 lines (96 loc) · 2.21 KB
/
kdl-hs.cabal
File metadata and controls
101 lines (96 loc) · 2.21 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
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
90
91
92
93
94
95
96
97
98
99
100
101
cabal-version: 3.0
name: kdl-hs
version: 1.1.0
synopsis: KDL language parser and API
description: KDL language parser and API.
homepage: https://github.com/brandonchinn178/kdl-hs#readme
bug-reports: https://github.com/brandonchinn178/kdl-hs/issues
author: Brandon Chinn <brandonchinn178@gmail.com>
maintainer: Brandon Chinn <brandonchinn178@gmail.com>
license: BSD-3-Clause
license-file: LICENSE.md
category: Text
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
test/KDL/__snapshots__/DecoderSpec.snap.md
test/KDL/__snapshots__/ParserSpec.snap.md
test/KDL/__snapshots__/RenderSpec.snap.md
tools/kdl-test
source-repository head
type: git
location: https://github.com/brandonchinn178/kdl-hs
library
hs-source-dirs: src
exposed-modules:
KDL
KDL.Applicative
KDL.Arrow
KDL.Decoder
KDL.Decoder.Arrow
KDL.Decoder.Internal.DecodeM
KDL.Decoder.Internal.Decoder
KDL.Decoder.Internal.Error
KDL.Decoder.Monad
KDL.Decoder.Schema
KDL.Parser
KDL.Parser.Internal
KDL.Render
KDL.Types
build-depends:
base < 5
, containers
, data-default
, megaparsec
, prettyprinter >= 1.7.0
, scientific
, text
, transformers
default-language: GHC2021
ghc-options: -Wall -Wcompat
executable kdl-hs-test-decoder
main-is: test/kdl-hs-test-decoder.hs
build-depends:
base < 5
, aeson
, bytestring
, containers
, kdl-hs
, scientific
, text
default-language: GHC2021
ghc-options: -Wall -Wcompat
test-suite kdl-tests
type: exitcode-stdio-1.0
ghc-options: -F -pgmF=skeletest-preprocessor
build-tool-depends:
, skeletest:skeletest-preprocessor
, kdl-hs:kdl-hs-test-decoder
hs-source-dirs: test
main-is: Main.hs
other-modules:
KDL.ApplicativeSpec
KDL.DecoderSpec
KDL.Decoder.ArrowSpec
KDL.Decoder.MonadSpec
KDL.Decoder.SharedSpec.Arrow
KDL.Decoder.SharedSpec.Monad
KDL.ParserSpec
KDL.RenderSpec
KDL.TestUtils.AST
KDL.TestUtils.Error
build-depends:
base
, containers
, directory
, filepath
, kdl-hs
, pretty-show
, process
, scientific
, skeletest
, temporary
, text
default-language: GHC2021
ghc-options: -Wall -Wcompat