-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardano-secp256k1-tests.cabal
90 lines (84 loc) · 1.89 KB
/
cardano-secp256k1-tests.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
cabal-version: 2.4
name: cardano-secp256k1-tests
version: 1.0.0.0
license: Apache-2.0
license-files:
LICENSE
maintainer: Dquadrant
author: Dquadrant Team
executable vector
main-is: Main.hs
hs-source-dirs: vector-tests
other-modules:
Test.EcdsaSecp256k1Tests
Test.SchnorrSecp256k1Tests
Util.Utils
Util.StringConstants
TestVector.EcdsaSecp256k1Vectors
TestVector.SchnorrSecp256k1Vectors
TestVector.Vectors
build-depends:
aeson
, base >=4.9 && <5
, bytestring
, cardano-crypto-class
, text
, text-conversions
, utf8-string
, random-bytestring
, tasty
, tasty-hunit
, serialise
, cardano-binary
, base16-bytestring
, cassava
, cborg
test-suite secp-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: vector-tests
other-modules:
Test.EcdsaSecp256k1Tests
Test.SchnorrSecp256k1Tests
Util.Utils
TestVector.EcdsaSecp256k1Vectors
TestVector.SchnorrSecp256k1Vectors
TestVector.Vectors
build-depends:
base >=4.9 && <5
, bytestring
, cardano-crypto-class
, text
, text-conversions
, utf8-string
, random-bytestring
, tasty
, tasty-hunit
, serialise
, cardano-binary
, base16-bytestring
, cassava
, cborg
benchmark secp-bench
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: benchmarks
ghc-options: "-with-rtsopts=-A32m"
other-modules:
Secp256k1Bench
build-depends:
aeson
, base >=4.9 && <5
, bytestring
, cardano-crypto-class
, text
, text-conversions
, utf8-string
, random-bytestring
, tasty
, tasty-hunit
, serialise
, cardano-binary
, base16-bytestring
, tasty-bench
, cborg