secp256k1

Pure cryptographic primitives on the secp256k1 elliptic curve.
git clone git://git.ppad.tech/secp256k1.git
Log | Files | Refs | LICENSE

commit c4298dbf4b18e93aaa12d8f77a16fb3801fbe32e
parent f80b1e2f6780e33472a43bced55a4b9ee7b16093
Author: Jared Tobin <jared@jtobin.io>
Date:   Wed, 13 Mar 2024 16:35:12 +0400

meta: cabal file cleanup

Diffstat:
Mppad-secp256k1.cabal | 30++++++++++++++++--------------
1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/ppad-secp256k1.cabal b/ppad-secp256k1.cabal @@ -1,26 +1,28 @@ cabal-version: 3.0 name: ppad-secp256k1 version: 0.1.0 --- synopsis: --- description: +synopsis: Cryptographic primitives on the secp256k1 elliptic curve license: MIT license-file: LICENSE author: Jared Tobin maintainer: jared@ppad.tech --- copyright: category: Cryptography build-type: Simple -extra-doc-files: CHANGELOG.md --- extra-source-files: +tested-with: GHC == { 9.6.4 } +extra-doc-files: CHANGELOG +description: + A pure Haskell implementation of various cryptographic primitives on the + secp256k1 elliptic curve. -common warnings - ghc-options: -Wall +source-repository head + type: git + location: git.ppad.tech/secp256k1.git library - import: warnings - exposed-modules: MyLib - -- other-modules: - -- other-extensions: - build-depends: base ^>=4.18.2.0 - hs-source-dirs: lib - default-language: Haskell2010 + default-language: Haskell2010 + hs-source-dirs: lib + ghc-options: + -Wall + -- exposed-modules: + build-depends: + base