forked from haskell-bitcoin/libsecp256k1-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
38 lines (38 loc) · 960 Bytes
/
package.yaml
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
name: libsecp256k1
version: 0.1.0
synopsis: Bindings for secp256k1
description: Sign and verify signatures using the secp256k1 library.
category: Crypto
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
github: ProofOfKeags/libsecp256k1-haskell.git
homepage: http://github.com/ProofOfKeags/secp256k1-haskell#readme
extra-source-files:
- CHANGELOG.md
- README.md
dependencies:
- base >=4.9 && <5
- bytestring >=0.10.8 && <0.12
- entropy >= 0.3.8 && <0.5
- hedgehog
- memory >= 0.14.15 && <1.0
- transformers >= 0.4.0.0 && <1.0
library:
source-dirs: src
pkg-config-dependencies:
- libsecp256k1
tests:
spec:
main: Main.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hspec
- libsecp256k1
- HUnit