Compactable-0.1.0.1: Compactable.cabal
-- Initial Compactable.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Compactable
version: 0.1.0.1
synopsis: A generalization for containers that can be stripped of Nothing
description: Sometimes you have a collection of Maybes,
and you want to extract the values. Actual that happens a whole lot.
license: BSD3
license-file: LICENSE
author: Isaac Shapira
maintainer: fresheyeball@gmail.com
-- copyright:
category: Control
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://gitlab.com/fresheyeball/Compactable.git
library
exposed-modules: Control.Compactable
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base >=4.9 && <4.10
, containers
, transformers
, vector
hs-source-dirs: src
default-language: Haskell2010