-
Notifications
You must be signed in to change notification settings - Fork 1
/
test-lurk-hs.cabal
76 lines (68 loc) · 1.4 KB
/
test-lurk-hs.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
cabal-version: 3.0
name: test-lurk-hs
version: 0.1.0.0
synopsis: Tests and acceptance criteria for https://github.com/argumentcomputer/lurk-hs
license: BSD-3-Clause
license-file: LICENSE
author: rsoeldner
maintainer: r.soeldner@gmail.com
copyright: Copyright (C) 2024 Kadena LLC
build-type: Custom
extra-doc-files:
CHANGELOG.md
README.md
data-files:
assets/*.json
verifier-assets/vk.bin
custom-setup
setup-depends:
, Cabal
, base
common warnings
ghc-options: -Wall
library
import: warnings
default-language: Haskell2010
hs-source-dirs: src
build-depends:
, aeson >=2.2
, base
, base16-bytestring >=0.1
, bytestring >=0.12
, plonk-verify
, text >=2.1
, microlens-th
exposed-modules:
Verify
Utils
executable example-lurk-hs
import: warnings
main-is: Main.hs
default-language: Haskell2010
hs-source-dirs: app
build-depends:
, base
, test-lurk-hs
test-suite lurk-hs-tests
import: warnings
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
, plonk-verify
, aeson >=2.2
, base
, hspec >=2.11
, test-lurk-hs
test-suite test-indirect
import: warnings
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MainIndirect.hs
build-depends:
, base
, hspec >=2.11
, test-lurk-hs
, microlens-th