string-class-0.1.6.1: string-class.cabal
name: string-class
version: 0.1.6.1
cabal-version: >= 1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright (C) 2010 Byron James Johnson
author: Byron James Johnson
maintainer: ByronJohnsonFP@gmail.com
synopsis: String class library
description: String class library
category: Data, Text
tested-with: GHC == 7.8.2
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
default-extensions:
--,GADTs
--,TemplateHaskell
DeriveDataTypeable
other-extensions:
TypeFamilies
,FlexibleContexts
,TypeSynonymInstances
,ExistentialQuantification
,DeriveDataTypeable
,FlexibleInstances
,UndecidableInstances
-- Haven't thoroughly checked version bounds.
-- I added as the minimum version for each non-base package the most recent
-- version as of this repository's initial commit.
build-depends:
base >= 4 && < 5
-- bytestring's toStrict and fromString methods were first introduced in 0.10.0.0.
--,bytestring >= 0.9.1.8 && < 0.11
,bytestring >= 0.10.0.0 && < 0.11
,text >= 0.11.0.1 && < 1.3
,tagged >= 0.1.1 && < 0.8
exposed-modules:
Data.String.Class
source-repository head
type: git
location: git@github.com:bairyn/string-class.git