-
Notifications
You must be signed in to change notification settings - Fork 1
/
cenary.cabal
118 lines (113 loc) · 2.64 KB
/
cenary.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
-- Initial cenary.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: cenary
version: 0.1.0.0
synopsis: A Language and its compiler on Ethereum Virtual Machine
description: A Language and its compiler on Ethereum Virtual Machine
license: MIT
license-file: LICENSE
author: Yiğit Özkavcı
maintainer: [email protected]
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/yigitozkavci/cenary
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.9 && <4.11,
containers,
cryptonite,
either,
errors,
lens,
monad-logger,
mtl,
optparse-applicative,
parsec,
parsec-numbers,
pretty-simple,
process,
template-haskell,
text,
bytestring,
indexed,
aeson,
aeson-casing
exposed-modules:
Cenary.Codegen,
Cenary.Codegen.Types,
Cenary.EvmAPI.API,
Cenary.Lexer,
Cenary.Lexer.Language,
Cenary.Parser,
Cenary.Syntax,
Cenary.Options,
Cenary.Utils.EvmAsm,
Cenary.Main,
Cenary.Crypto.Keccak,
Evm.Abi,
Cenary.Deployment,
Cenary.EvmAPI.AbiBridge,
Cenary.Error,
Cenary.Codegen.Register
Cenary.Codegen.Address
Cenary.Codegen.CodegenError
Cenary.Codegen.CodegenM
Cenary.Codegen.CodegenState
Cenary.Codegen.Context
Cenary.Codegen.ContextM
Cenary.Codegen.Env
Cenary.Codegen.Evm
Cenary.Codegen.FuncRegistry
Cenary.Codegen.MappingOrder
Cenary.Codegen.Memory
Cenary.Codegen.Operand
Cenary.Codegen.Procedures
Cenary.Codegen.Scope
Cenary.Codegen.TcM
Cenary.Codegen.VariableStatus
Cenary.EvmAPI.Instruction
Cenary.EvmAPI.Program
Cenary.EvmAPI.OpcodeM
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
directory,
filepath,
hspec,
cenary,
mtl,
text,
QuickCheck,
process,
tasty-hunit
executable cenary
build-depends:
cenary,
base >=4.9 && <4.11,
containers,
either,
errors,
lens,
monad-logger,
mtl,
optparse-applicative,
parsec,
parsec-numbers,
pretty-simple,
process,
template-haskell,
text
main-is: src/Main.hs
default-language: Haskell2010