packages feed

freq-0.1.0.1: freq.cabal

---------------------------------------------------------------------

name:                      freq
version:                   0.1.0.1
build-type:                Simple
cabal-version:             >= 1.10
category:                  Data
author:                    Daniel Cartwright
maintainer:                dcartwright@layer3com.com
license:                   MIT
license-file:              LICENSE
homepage:                  https://github.com/chessai/freq
bug-reports:               https://github.com/chessai/freq/issues
synopsis:
  Are you ready to get freaky?
description:
  This library provides a way to train a model that predicts
  the "randomness" of an input ByteString.
extra-source-files:        README.md
tested-with:               GHC == 8.2.1, GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.2

---------------------------------------------------------------------

source-repository head
    type:                git
    branch:              master
    location:            https://github.com/chessai/freq.git

---------------------------------------------------------------------

library
    hs-source-dirs:        src 
    build-depends:         base       >= 4.9 && < 5.0
                         , bytestring 
                         , containers 
                         , primitive >= 0.6.1
    exposed-modules:       Freq
                           Freq.Internal 
    default-language:      Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
    test
  build-depends:
      base >=4.7 && <5
    , bytestring 
    , containers
    , freq
    , hedgehog 
  default-language: Haskell2010

benchmark bench
  type: exitcode-stdio-1.0
  build-depends:
      base
    , bytestring
    , containers
    , freq
    , gauge
  default-language: Haskell2010
  hs-source-dirs: bench
  main-is: Main.hs

executable freq-train
    hs-source-dirs:        app
    build-depends:         base, freq, bytestring, containers
    main-is:               Main.hs
    default-language:      Haskell2010

---------------------------------------------------------------------