-- Initial inject-function.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: inject-function -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- http://www.haskell.org/haskellwiki/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.1.0.2 -- A short (one-line) description of the package. synopsis: Monadic functions with injected parameters. -- A longer description of the package. description: An “inject function” is a regular monadic function (like a -> m b), but adds “injected parameters”. You can imagine such a function as an action taking parameters (the regular monadic function parameters) and vertical parameters. When you compose two compatible monadic functions (the regular way is through >=>), you can choose the types of the injected parameters so that, after some compositions, you have a total control of all the process. -- URL for the project homepage or repository. homepage: https://github.com/skypers/inject-function -- The license under which the package is released. license: GPL-3 -- The file containing the license text. license-file: LICENSE -- The package author(s). author: DimitriSabadie -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: dimitri.sabadie@gmail.com -- A copyright notice. -- copyright: category: Control build-type: Simple -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.8 library -- Modules exported by the library. exposed-modules: Control.InjFun -- Modules included in this library but not exported. -- other-modules: -- Other library packages from which modules are imported. build-depends: base ==4.6.*