-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcooklang-hs.cabal
41 lines (37 loc) · 1.26 KB
/
cooklang-hs.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
cabal-version: 3.6
name: cooklang-hs
version: 0.1.1
synopsis: Parser for the Cook markup language
description: Parser for the Cook markup language. See more about Cook at https://cooklang.org/.
license: MIT
author: Isaac Van Doren
maintainer: 69181572+isaacvando@users.noreply.github.com
copyright: Isaac Van Doren 2022-present
category: Parsing
homepage: https://github.com/isaacvando/cooklang-hs
bug-reports: https://github.com/isaacvando/cooklang-hs/issues
extra-doc-files: README.md
source-repository head
type: git
location: https://github.com/isaacvando/cooklang-hs.git
executable cooklang-hs
main-is: Main.hs
other-modules: Text.Cook
build-depends: base
, megaparsec
hs-source-dirs: .
default-language: Haskell2010
library
exposed-modules: Text.Cook
build-depends: base >= 4.15 && < 5
, megaparsec >= 9.1 && < 9.7
default-language: Haskell2010
test-suite test-cooklang-hs
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Text.Cook
build-depends: base
, megaparsec
, hspec
hs-source-dirs: .
default-language: Haskell2010