-
Notifications
You must be signed in to change notification settings - Fork 0
/
require.cabal
63 lines (58 loc) · 1.44 KB
/
require.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
-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack
name: require
version: 0.0.1
synopsis: A language that handles input with failure probablity.
category: Development
stability: alpha
homepage: https://github.com/Neuromancer42/ministgwasm#readme
bug-reports: https://github.com/Neuromancer42/ministgwasm/issues
maintainer: Yifan Chen <[email protected]>
copyright: (c) 2017 Yifan Chen (Neuromancer42)
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
LICENSE
README.md
source-repository head
type: git
location: https://github.com/Neuromancer42/ministgwasm
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5
, containers
, mtl
, array
build-tools:
alex, happy
exposed-modules:
Language.Require.Syntax
Language.Require.Lexer
Language.Require.Parser
Language.Require.TypeCheck
Language.Require.Analysis
Language.Require.Eval
other-modules:
Language.Require
Paths_require
default-language: Haskell2010
executable require-test
main-is: test.hs
hs-source-dirs:
app
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5
, containers
, mtl
, array
, require
build-tools:
alex, happy
default-language: Haskell2010