packages feed

freq-0.1.1: freq.cabal

cabal-version: 2.2
name:
  freq
version:
  0.1.1
author:
  chessai
maintainer:
  chessai <chessai1996@gmail.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.
category:
  Text,Data
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
  exposed-modules:
    Freq
    Freq.Internal  
  build-depends:
    , base >= 4.9 && < 4.13
    , binary >= 0.8 && < 0.11
    , bytestring >= 0.10 && < 0.11
    , containers >= 0.5 && < 0.7
    , deepseq >= 1.4 && < 1.5
    , primitive >= 0.6.4 && < 0.7
  hs-source-dirs:
    src
  default-language:
    Haskell2010
  ghc-options:
    -Wall
    -O2

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

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

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

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