-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgodot-megaparsec.cabal
61 lines (50 loc) · 1.81 KB
/
godot-megaparsec.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
cabal-version: 2.4
name: godot-megaparsec
version: 0.2.5.1
-- A short (one-line) description of the package.
synopsis: Megaparsec parser for Godot `tscn` and `gdextension` files.
-- A longer description of the package.
description:
Megaparsec parser for Godot `tscn` and `gdextension` files.
Currently only supports auto-generated files (i.e. files generated by the editor).
Probably could parse other resource files, as they share similar formats.
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
license: BSD-3-Clause
author: Winston Hartnett
maintainer: [email protected]
-- A copyright notice.
-- copyright: BSD3-CLAUSE
category: library
source-repository head
type: git
location: https://github.com/WinstonHartnett/godot-megaparsec.git
library
exposed-modules: Godot.Parser.Resource
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
ghc-options: -Wall -fexpose-all-unfoldings
build-depends:
, base >= 4.14.0 && < 5
, generic-lens
, lens >= 5.0.1 && < 6
, megaparsec >= 9.2.0 && < 10
, mtl
, text >= 1.2.4 && < 2.2
, unordered-containers >= 0.2.14 && < 1
hs-source-dirs: src
default-language: Haskell2010
executable bench
hs-source-dirs: bench
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
, base >= 4.14.0 && < 5
, criterion >= 1.5.11 && < 1.6
, godot-megaparsec
, megaparsec >= 9.2.0 && < 9.3
, text >= 1.2.4 && < 2.2