-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynasty.cabal
80 lines (71 loc) · 1.82 KB
/
dynasty.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
69
70
71
72
73
74
75
76
77
78
79
80
cabal-version: 3.8
name: dynasty
version: 0.0.0.0
synopsis: A lazy functional language that compiles to JavaScript
description: Please see the README on GitHub at <https://github.com/aionescu/dynasty#readme>
homepage: https://github.com/aionescu/dynasty#readme
bug-reports: https://github.com/aionescu/dynasty/issues
license: GPL-3.0-only
license-file: LICENSE.txt
maintainer: [email protected]
copyright: Copyright (C) 2020-2023 Alex Ionescu
category: Compilers/Interpreters, Language
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
data-files:
core/runtime.js
core/**/*.dy
source-repository head
type: git
location: https://github.com/aionescu/dynasty
executable dynasty
default-language: GHC2021
default-extensions:
BlockArguments
DerivingStrategies
LambdaCase
MultiWayIf
NoFieldSelectors
OverloadedRecordDot
OverloadedStrings
RecordWildCards
ViewPatterns
ghc-options:
-Wall
-Wcompat
-Widentities
-Wmissing-deriving-strategies
-Wno-name-shadowing
-Wpartial-fields
-Wprepositive-qualified-module
-Wredundant-constraints
-Wunused-packages
hs-source-dirs: src
main-is: Main.hs
autogen-modules: Paths_dynasty
other-modules:
Language.Dynasty.Codegen
Language.Dynasty.Core
Language.Dynasty.Lowering
Language.Dynasty.NameResolution
Language.Dynasty.Opts
Language.Dynasty.Parser
Language.Dynasty.Syntax
Language.Dynasty.Utils
Language.Dynasty.Validation
Paths_dynasty
build-depends:
base >=4.19 && <5
, containers ^>= 0.6.7
, directory ^>= 1.3.8
, filepath ^>= 1.4.200
, megaparsec ^>= 9.6.1
, monoidal-containers ^>= 0.6.4
, mtl ^>= 2.3
, optparse-applicative ^>= 0.18
, parser-combinators ^>= 1.3
, scientific ^>= 0.3.7
, text ^>= 2.1
, transformers ^>= 0.6.1