-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathebnf-to-railroad.cabal
44 lines (41 loc) · 1.38 KB
/
ebnf-to-railroad.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
name: ebnf-to-railroad
version: 0.1.0.0
homepage: https://github.com/jean-lopes/ebnf-parser#readme
license: MIT
license-file: LICENSE
author: Jean Carlo Giambastiani Lopes
maintainer: [email protected]
copyright: Copyright (c) 2017 Jean Carlo Giambastiani Lopes
category: parser
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/jean-lopes/ebnf-to-railroad
library
hs-source-dirs: src
exposed-modules: Core
, Core.EBNF
build-depends: base >= 4.7 && < 5
, text
, containers
, megaparsec
default-language: Haskell2010
ghc-options: -Wall
executable ebnf-to-railroad
hs-source-dirs: app
main-is: Main.hs
other-modules: Html
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, ebnf-to-railroad
, text
, optparse-applicative
, easy-file
, blaze-html
, twitch
, process
, data-default
default-language: Haskell2010
ghc-options: -Wall