-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtiny-parser.cabal
More file actions
39 lines (36 loc) · 1.2 KB
/
tiny-parser.cabal
File metadata and controls
39 lines (36 loc) · 1.2 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
cabal-version: 2.2
name: tiny-parser
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/dashalary/tiny-parser#readme
license: BSD-3-Clause
license-file: LICENSE
author: Dasha Lary
maintainer: dasha.k.lary@gmail.com
copyright: BSD
category: Internal
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
executable tiny-parser
hs-source-dirs: src
main-is: Main.hs
other-modules: AST
, Evaluator
, Parser
, Tokenizer
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
source-repository head
type: git
location: https://github.com/dashalary/tiny-parser