-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSharade.cabal
66 lines (51 loc) · 2.21 KB
/
Sharade.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
name: Sharade
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: Transpiler of a language (Sharade) with no-determinism
features.
description: This is a very simple transpiler to Haskell of a language
with no determinism features. It combines share and no-share
semantics.
license: MIT
license-file: LICENSE
author: Manuel Velasco
maintainer: [email protected]
category: Language
build-type: Simple
extra-source-files: ChangeLog.md, README.md
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
library
exposed-modules: Sharade.Prelude
Sharade.List
Sharade.Pair
build-Depends: base >=4.9 && <5.0, explicit-sharing==0.10
hs-source-dirs: src
default-language: Haskell2010
executable Sharade
-- .hs or .lhs file containing the Main module.
main-is: Sharade/Main.hs
-- Modules included in this executable, other than Main.
other-modules: Sharade.Parser.Lexer,
Sharade.Parser.Syntax,
Sharade.Parser.Expression,
Sharade.Parser.Declaration,
Sharade.Parser.Parser,
Sharade.Translator.Semantic.Substitutable,
Sharade.Translator.Semantic.Type,
Sharade.Translator.Semantic.TypeEnv,
Sharade.Translator.Semantic.Infer,
Sharade.Translator.Translator
build-depends: base >=4.9 && <5.0, parsec, indents, parsec3-numbers,
containers, mtl
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010
Source-Repository head
type: git
location: [email protected]:ManuelVs/Sharade.git