-
Notifications
You must be signed in to change notification settings - Fork 3
/
plonk-verify.cabal
65 lines (58 loc) · 1.29 KB
/
plonk-verify.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
cabal-version: 3.0
name: plonk-verify
version: 0.1.0
license: MIT
copyright: Copyright (c) 2024 Argument Computer Corporation
extra-doc-files:
README.md
extra-source-files:
Cargo.toml
Cargo.lock
src/lib.rs
data-files:
verifier-assets/v1.0.8.3-testnet/vk.bin
build-type: Custom
custom-setup
setup-depends:
, Cabal
, base
, directory
, process
common warnings
ghc-options: -Wall
library
import: warnings
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
PlonkBn254.Verify
PlonkBn254.Utils.EmbedVMKeys
build-depends:
, base
, base16-bytestring >=0.1.1.7
, bytestring >=0.11.2
, directory >=1.3
, filepath >=1.4
, template-haskell >=2.16
, temporary >=1.3
, vector >=0.12
frameworks:
CoreFoundation
Security
extra-bundled-libraries:
Cplonk_verify
test-suite tests
import: warnings
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
hs-source-dirs: tests
build-depends:
, aeson >=2.2
, base
, base16-bytestring >=0.1.1.7
, bytestring >=0.11.2
, hspec >=2.11
, plonk-verify
, text >=2.1