packages feed

online-0.6.0: online.cabal

cabal-version: 2.4
name:          online
version:       0.6.0
synopsis: See readme.md
description: See readme.md for description.
category: project
author: Tony Day
maintainer: tonyday567@gmail.com
copyright: Tony Day (c) AfterTimes
license: BSD-3-Clause
homepage: https://github.com/tonyday567/online#readme
bug-reports: https://github.com/tonyday567/online/issues
build-type: Simple
source-repository head
  type: git
  location: https://github.com/tonyday567/online

library
  hs-source-dirs:
    src
  build-depends:
    adjunctions >= 4.4,
    backprop >= 0.2.6.4 && < 0.3,
    base >=4.7 && <5,
    containers >= 0.6,
    foldl,
    folds,
    generic-lens >= 2.0,
    hmatrix >= 0.20,
    lens,
    mwc-probability,
    mwc-random,
    numhask >= 0.6 && < 0.7,
    numhask-array >= 0.7 && < 0.8,
    primitive >= 0.7,
    profunctors >= 5.5,
    tdigest,
    text,
    vector,
    vector-algorithms
  exposed-modules:
    Data.Mealy
    Data.Quantiles
    Data.Simulate
  other-modules:
  default-language: Haskell2010
  default-extensions:
    NoImplicitPrelude
    NegativeLiterals
    OverloadedStrings
    UnicodeSyntax
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs:
    test
  build-depends:
    base >=4.7 && <5,
    doctest,
    numhask >= 0.6 && < 0.7,
    online
  default-language: Haskell2010
  default-extensions:
    NoImplicitPrelude
    NegativeLiterals
    OverloadedStrings
    UnicodeSyntax
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints