-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
61 lines (56 loc) · 1.43 KB
/
package.yaml
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
name: evm-opcodes
version: 0.2.0
synopsis: 'Opcode types for Ethereum Virtual Machine (EVM)'
description: 'This library provides opcode types for the Ethereum Virtual Machine.'
category: Ethereum, Finance, Network
license: MIT
license-file: LICENSE
homepage: https://github.com/sshine/evm-opcodes
author: Simon Shine
maintainer: [email protected]
copyright: 2018-2024 Simon Shine
github: sshine/evm-opcodes
extra-source-files:
- README.md
dependencies:
- base >= 4.12 && < 5
- bytestring >= 0.10 && < 0.13
- cereal ^>= 0.5
- data-dword ^>= 0.3
- containers >= 0.6 && < 0.8
- text >= 1.2
library:
exposed-modules:
- EVM.Opcode
- EVM.Opcode.Internal
- EVM.Opcode.Positional
- EVM.Opcode.Labelled
- EVM.Opcode.Traversal
source-dirs: src
ghc-options:
- -Wall
- -Wnoncanonical-monad-instances
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
tests:
test:
main: test.hs
source-dirs: test
dependencies:
- evm-opcodes
- tasty
- tasty-discover
- tasty-hspec
- tasty-hedgehog
- hedgehog
- hspec
benchmarks:
bench:
main: bench.hs
source-dirs: bench
dependencies:
- evm-opcodes
- tasty-bench
# ghc-options: -O2