packages feed

cronus-0.1.0.0: cronus.cabal

cabal-version:       >=1.10

name:                cronus
version:             0.1.0.0
synopsis:            Another bloated standard library
description:         Another bloated standard library.
license:             MIT
license-file:        LICENSE
author:              Samuel Schlesinger
maintainer:          sgschlesinger@gmail.com
copyright:           (c) 2020 Samuel Schlesinger
category:            Prelude
build-type:          Simple
extra-source-files:  CHANGELOG.md
tested-with: GHC ==8.8.1 || ==8.8.2 || ==8.8.3 || ==8.10.1

source-repository head
  type: git 
  location: https://github.com/samuelschlesinger/cronus

library
  exposed-modules:
    Cronus,
    Cronus.Text.Strict,
    Cronus.Text.Lazy,
    Cronus.ByteString.Strict,
    Cronus.ByteString.Lazy,
    Cronus.HashMap.Lazy,
    Cronus.HashMap.Strict,
    Cronus.HashSet,
    Cronus.Graph,
    Cronus.IntMap.Strict,
    Cronus.IntMap.Lazy,
    Cronus.IntSet,
    Cronus.Map.Lazy,
    Cronus.Map.Strict,
    Cronus.Sequence,
    Cronus.Set,
    Cronus.Tree,
    Cronus.Vector
  other-extensions:
    NoImplicitPrelude
  build-depends:
    base >=4.10 && <5,
    deepseq >=1.4 && <1.5,
    text >=1.0 && <1.3,
    bytestring >= 0.8,
    containers >= 0.6 && <0.7,
    unordered-containers >=0.2 && <0.3,
    hashable >=1.0 && <1.4,
    transformers >=0.5.6 && <0.5.7,
    mtl >=2.2 && <2.3,
    profunctors >=5.5 && <5.6,
    vector >=0.10 && <0.13,
    comonad >=5.0 && <5.1
  default-language:
    Haskell2010