-
Notifications
You must be signed in to change notification settings - Fork 0
/
curly-expander.cabal
68 lines (51 loc) · 1.58 KB
/
curly-expander.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
cabal-version: 3.0
name: curly-expander
version: 0.3.0.4
synopsis: Curly braces (brackets) expanding
description: A library for curly braces (brackets) expanding - similar to bash curly expanding. It also contain an extended version of it.
license: LGPL-3.0-only
license-file: LICENSE
homepage: https://github.com/stastnypremysl/curly-expander
bug-reports: https://github.com/stastnypremysl/curly-expander/issues
author: Přemysl Šťastný
maintainer: [email protected]
category: Text
build-type: Simple
extra-source-files: CHANGELOG.md README.md
common deps
ghc-options: -Wall -Wextra
default-language: Haskell2010
build-depends:
base >= 4.14 && <4.20,
parsec ^>= 3.1,
text >= 1.2 && <2.2
common tests
import: deps
hs-source-dirs: tests
build-depends: curly-expander
library
import: deps
exposed-modules: Text.CurlyExpander
test-suite base-case-test
import: tests
main-is: BaseCaseTest.hs
type: exitcode-stdio-1.0
test-suite range-case-test
import: tests
main-is: RangeCaseTest.hs
type: exitcode-stdio-1.0
test-suite nested-case-test
import: tests
main-is: NestedCaseTest.hs
type: exitcode-stdio-1.0
test-suite custom-case-test
import: tests
main-is: CustomCaseTest.hs
type: exitcode-stdio-1.0
source-repository head
type: git
location: https://github.com/stastnypremysl/curly-expander
source-repository this
type: git
location: https://github.com/stastnypremysl/curly-expander
tag: 0.3.0.4