forked from haskoin/secp256k1-haskell
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibsecp256k1.cabal
85 lines (80 loc) · 2.2 KB
/
libsecp256k1.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: libsecp256k1
version: 0.2.1
synopsis: Bindings for secp256k1
description: Sign and verify signatures using the secp256k1 library.
category: Crypto
homepage: http://github.com/ProofOfKeags/secp256k1-haskell#readme
bug-reports: https://github.com/ProofOfKeags/libsecp256k1-haskell.git/issues
author: Keagan McClelland
maintainer: [email protected]
copyright: (c) 2017 Jean-Pierre Rupp; (c) 2020 Haskoin Developers; (c) 2022 Keagan McClelland
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/ProofOfKeags/libsecp256k1-haskell.git
library
exposed-modules:
Crypto.Secp256k1
Crypto.Secp256k1.Gen
Crypto.Secp256k1.Internal
Crypto.Secp256k1.Prim
other-modules:
Paths_libsecp256k1
hs-source-dirs:
src
default-extensions:
ImportQualifiedPost
pkgconfig-depends:
libsecp256k1
build-depends:
base >=4.9 && <5
, bytestring >=0.10.8 && <0.12
, deepseq >=1.4.8 && <1.5
, entropy >=0.3.8 && <0.5
, hashable >=1.4.2 && <1.5
, hedgehog >=1.2 && <1.5
, memory >=0.14.15 && <1.0
, random >=1.2.1.2 && <1.3
, transformers >=0.4.0.0 && <1.0
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Crypto.Secp256k1.PrimSpec
Crypto.Secp256k1Prop
Crypto.Secp256k1Spec
Spec
Util
Paths_libsecp256k1
hs-source-dirs:
test
default-extensions:
ImportQualifiedPost
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
HUnit
, base >=4.9 && <5
, bytestring >=0.10.8 && <0.12
, deepseq >=1.4.8 && <1.5
, either
, entropy >=0.3.8 && <0.5
, hashable >=1.4.2 && <1.5
, hedgehog >=1.2 && <1.5
, hspec
, hspec-api
, libsecp256k1
, memory >=0.14.15 && <1.0
, monad-par
, random >=1.2.1.2 && <1.3
, transformers >=0.4.0.0 && <1.0
default-language: Haskell2010