packages feed

Naperian-0.1.1.0: Naperian.cabal

name:                Naperian
version:             0.1.1.0

synopsis:            Naperian Functors for APL-like programming
homepage:            https://github.com/idontgetoutmuch/Naperian
license:             OtherLicense
license-file:        LICENSE.txt
author:              Austin Seipp
maintainer:          dominic@steinitz.org
category:            Math
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

library
  exposed-modules:     Naperian
  other-extensions:    ConstraintKinds
                     , DataKinds
                     , DeriveGeneric
                     , DeriveTraversable
                     , FlexibleContexts
                     , FlexibleInstances
                     , GADTs
                     , InstanceSigs
                     , MagicHash
                     , MultiParamTypeClasses
                     , OverloadedLists
                     , PartialTypeSignatures
                     , PolyKinds
                     , RankNTypes
                     , ScopedTypeVariables
                     , StandaloneDeriving
                     , TypeFamilies
                     , TypeOperators
                     , UndecidableInstances
  build-depends:     base >=4.12 && <4.13
                     , containers
                     , ghc-prim
                     , vector
  hs-source-dirs:      src
  default-language:    Haskell2010