packages feed

galois-fft-0.1.0: galois-fft.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 501e6cfc24248ef770ef9809bf5fcddd3908419a34a6bfd35be74ee2883c24e4

name:           galois-fft
version:        0.1.0
synopsis:       FFTs over finite fields
description:    Finite field polynomial arithmetic based on fast Fourier transforms
category:       Cryptography
homepage:       https://github.com/adjoint-io/galois-fft#readme
bug-reports:    https://github.com/adjoint-io/galois-fft/issues
maintainer:     Adjoint Inc (info@adjoint.io)
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/adjoint-io/galois-fft

library
  exposed-modules:
      FFT
  other-modules:
      Paths_galois_fft
  hs-source-dirs:
      src
  default-extensions: LambdaCase OverloadedStrings NoImplicitPrelude
  ghc-options: -freverse-errors -O2 -Wall
  build-depends:
      base >=4.10 && <5
    , elliptic-curve >=0.3 && <0.4
    , galois-field >=1 && <2
    , poly >=0.3.2
    , protolude >=0.2 && <0.3
    , vector >=0.12 && <0.13
  default-language: Haskell2010

test-suite fft-tests
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      TestFFT
      Paths_galois_fft
  hs-source-dirs:
      test
  default-extensions: LambdaCase OverloadedStrings NoImplicitPrelude
  ghc-options: -freverse-errors -O2 -Wall -main-is Main
  build-depends:
      QuickCheck
    , base >=4.10 && <5
    , elliptic-curve >=0.3 && <0.4
    , galois-fft
    , galois-field >=1 && <2
    , pairing
    , poly >=0.3.2
    , protolude >=0.2 && <0.3
    , quickcheck-instances
    , tasty
    , tasty-discover
    , tasty-hunit
    , tasty-quickcheck
    , vector >=0.12 && <0.13
  default-language: Haskell2010

benchmark fft-benchmarks
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Poly
      Paths_galois_fft
  hs-source-dirs:
      bench
  default-extensions: LambdaCase OverloadedStrings NoImplicitPrelude
  ghc-options: -freverse-errors -O2 -Wall -main-is Main
  build-depends:
      base >=4.10 && <5
    , criterion
    , elliptic-curve >=0.3 && <0.4
    , galois-fft
    , galois-field >=1 && <2
    , pairing
    , poly >=0.3.2
    , protolude >=0.2 && <0.3
    , vector >=0.12 && <0.13
  default-language: Haskell2010