-
Notifications
You must be signed in to change notification settings - Fork 8
/
config-value.cabal
66 lines (57 loc) · 1.83 KB
/
config-value.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
cabal-version: 3.0
name: config-value
version: 0.8.3
synopsis: Simple, layout-based value language similar to YAML or JSON
license: ISC
license-file: LICENSE
author: Eric Mertens
maintainer: [email protected]
copyright: 2015-2016,2019 Eric Mertens
category: Language
build-type: Simple
homepage: https://github.com/glguy/config-value
bug-reports: https://github.com/glguy/config-value/issues
description: This package implements a language similar to YAML or JSON but
with fewer special cases and fewer dependencies. It emphasizes
layout structure for sections and lists, and requires quotes
around strings.
tested-with: GHC == {8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.6, 9.8.2, 9.10.1}
extra-doc-files:
README.md
CHANGELOG.md
config-value.vim
library
exposed-modules:
Config
Config.Lens
Config.Number
Config.Macro
other-modules:
Config.Lexer
Config.LexerUtils
Config.Parser
Config.NumberParser
Config.Tokens
Config.Pretty
Config.Value
build-depends:
base >= 4.8 && < 4.21,
array >= 0.4 && < 0.6,
containers >= 0.5 && < 0.8,
pretty >= 1.1.1.0 && < 1.2,
text >= 1.2.0.4 && < 2.2,
build-tool-depends:
alex:alex >= 3.2,
happy:happy >= 1.19 && <2.2,
hs-source-dirs: src
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/glguy/config-value.git
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: base, config-value, text
default-language: Haskell2010
ghc-options: -Wall