-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathethtxd.cabal
43 lines (41 loc) · 1.59 KB
/
ethtxd.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
cabal-version: >=1.10
-- Initial package description 'ethtxd.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: ethtxd
version: 0.2.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Kendrick Tan
maintainer: kendricktan0814@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
executable ethtxd
main-is: Main.hs
other-modules: Fetch, Trace
-- ghc-options: -Wall -O2 -static -threaded
-- other-extensions:
build-depends: base >=4.9 && <5
, hevm >=0.47.0
, lens >=4.17.0 && < 5.0.0
, containers >=0.6.0.0 && <0.7.0.0
, transformers >= 0.5.6 && < 0.6
, bytestring >= 0.10.8 && < 0.11
, aeson >= 1.4.0 && < 2.0.0
, lens-aeson >= 1.0.0 && < 20.0
, sbv >= 8.1.0 && < 8.9.0
, text >= 1.0.0 && < 2.0.0
, base16-bytestring >= 1.0.1.0 && < 1.0.2.0
, wreq >= 0.5.3 && < 0.6
, scotty >= 0.11.0.0 && < 0.12.0.0
, rosezipper >= 0.2
, wai-extra >= 3.0.0 && < 4.0.0
, http-types >= 0.12.0 && < 0.13.0
, cmdargs >= 0.10.0 && < 0.11.0
, unordered-containers >= 0.2.14.0
hs-source-dirs: src
default-language: Haskell2010