packages feed

secp256k1-0.1.7: secp256k1.cabal

name:                secp256k1
version:             0.1.7
synopsis:            secp256k1 bindings for Haskell
description:         Please see README.md
homepage:            http://github.com/haskoin/secp256k1#readme
license:             PublicDomain
license-file:        UNLICENSE
author:              Jean-Pierre Rupp
maintainer:          root@haskoin.com
copyright:           2015 Jean-Pierre Rupp
category:            Crypto
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Crypto.Secp256k1
                     , Crypto.Secp256k1.Internal
  build-depends:       base >= 4.8 && < 5
                     , QuickCheck
                     , bytestring
                     , mtl
                     , entropy
                     , string-conversions
                     , base16-bytestring
  default-language:    Haskell2010
  ghc-options:         -Wall
  extra-libraries:     secp256k1

test-suite secp256k1-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Crypto.Secp256k1.Tests
                     , Crypto.Secp256k1.Internal.Tests
  build-depends:       base
                     , secp256k1
                     , HUnit
                     , QuickCheck
                     , test-framework
                     , test-framework-hunit
                     , test-framework-quickcheck2
                     , base16-bytestring
                     , cryptohash
                     , bytestring
                     , mtl
                     , entropy
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/haskoin/secp256k1