-
Notifications
You must be signed in to change notification settings - Fork 4
/
hassembly-evm.cabal
40 lines (36 loc) · 1.32 KB
/
hassembly-evm.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
name: hassembly-evm
version: 0.1.0.0
synopsis: EVM (Ethereum virtual machine) Assembly on Haskell DSL
description: This is a bytecode generator from EVM assembly on Haskell.
homepage: https://github.com/takenobu-hs
license: BSD3
license-file: LICENSE
author: Takenobu Tani
maintainer: takenobu.hs@gmail.com
copyright: Takenobu Tani
category: Language
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/takenobu-hs/haskell-ethereum-assembly.git
library
hs-source-dirs: src
exposed-modules: Language.Evm
Language.Evm.Types
Language.Evm.Instructions
Language.Evm.IR
Language.Evm.Opcodes
Language.Evm.Internal
Language.Evm.Utils
-- other-modules:
-- other-extensions:
build-depends: base, transformers
default-language: Haskell2010
executable hassembly-evm
hs-source-dirs: app
main-is: Main.hs
build-depends: base >= 4.7 && < 5,
hassembly-evm
default-language: Haskell2010