name: primesieve version: 0.1.0.0 synopsis: FFI bindings for the primesieve library. description: FFI bindings for the primesieve library. homepage: https://github.com/sighingnow/computations/tree/master/primesieve#readme author: Tao He maintainer: sighingnow@gmail.com copyright: Copyright: (c) 2017 Tao He category: Algorithms, Foreign, Math, Number Theory build-type: Simple cabal-version: >=1.10 license: MIT license-file: LICENSE extra-source-files: README.md library hs-source-dirs: src exposed-modules: Math.Prime.FastSieve other-modules: Math.Prime.FastSieve.FFI default-language: Haskell2010 default-extensions: NoImplicitPrelude , OverloadedStrings build-depends: base >= 4.7 && < 5 , foundation executable prime-example hs-source-dirs: example main-is: Main.hs default-language: Haskell2010 default-extensions: NoImplicitPrelude , OverloadedStrings build-depends: base >= 4.7 && < 5 , foundation , primesieve extra-libraries: primesieve