-
Notifications
You must be signed in to change notification settings - Fork 4
/
pasta-curves.cabal
78 lines (72 loc) · 2.97 KB
/
pasta-curves.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
cabal-version: 2.4
name: pasta-curves
version: 0.0.1.0
synopsis: Provides the Pasta curves: Pallas, Vesta and their field elements Fp and Fq.
description: Provides the Pasta curves: Pallas, Vesta and their field elements Fp and Fq.
See the PastaCurves module below and/or the GitHub repository README.md for more details.
homepage: https://github.com/nccgroup/pasta-curves
bug-reports: https://github.com/nccgroup/pasta-curves/issues
license: MIT
license-file: LICENSE
author: Eric Schorn
maintainer: Eric Schorn <[email protected]>
copyright: 2022 Eric Schorn
category: Cryptography, Elliptic Curves
build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.6.5
|| == 8.8.4
|| == 8.10.7
|| == 9.0.2
|| == 9.2.2
source-repository head
type: git
location: https://github.com/nccgroup/pasta-curves.git
common common-options
build-depends: base >= 4.12 && < 4.17,
utf8-string >= 1 && < 1.0.3,
cryptonite >= 0.29 && < 0.31,
memory >= 0.16 && < 0.18,
bytestring >= 0.10,
random >= 1.1 && < 1.3
other-modules: Curves, Fields, Pasta
ghc-options: -Weverything
-Wno-missing-import-lists
-Wno-unsafe
-Wno-all-missed-specialisations
default-language: Haskell2010
library
import: common-options
hs-source-dirs: src/Crypto/ECC
exposed-modules: PastaCurves
executable pasta-curves
import: common-options
hs-source-dirs: app, src/Crypto/ECC
main-is: Main.hs
other-modules: PastaCurves
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
test-suite pasta-curves-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test, src/Crypto/ECC
main-is: Spec.hs
other-modules: PastaCurves, TestFields, TestCurves
build-depends: tasty >= 1.4 && < 1.5,
tasty-hunit >= 0.10 && < 0.11,
tasty-quickcheck >= 0.10 && < 0.11
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
benchmark pasta-curves-benchmark
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: benchmark, src/Crypto/ECC
main-is: Main.hs
other-modules: PastaCurves
build-depends: criterion >= 1.5 && < 1.6
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N