2020-11-03 13:51:48 +01:00
|
|
|
cabal-version: 1.12
|
|
|
|
name: base64-bytestring-type
|
|
|
|
version: 1.0.1
|
2021-03-08 09:01:06 +01:00
|
|
|
x-revision: 8
|
2020-11-03 13:51:48 +01:00
|
|
|
synopsis: A newtype around ByteString, for base64 encoding
|
|
|
|
description:
|
|
|
|
A newtype around ByteString, for base64 encoding.
|
|
|
|
Strict and lazy, normal and url alphabet variants.
|
|
|
|
|
|
|
|
category: Data
|
|
|
|
homepage: https://github.com/phadej/base64-bytestring-type#readme
|
|
|
|
bug-reports: https://github.com/phadej/base64-bytestring-type/issues
|
|
|
|
author: Oleg Grenrus <oleg.grenrus@iki.fi>
|
|
|
|
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
build-type: Simple
|
|
|
|
tested-with:
|
|
|
|
GHC ==7.8.4
|
|
|
|
|| ==7.10.3
|
|
|
|
|| ==8.0.2
|
|
|
|
|| ==8.2.2
|
|
|
|
|| ==8.4.4
|
|
|
|
|| ==8.6.5
|
|
|
|
|| ==8.8.4
|
2021-03-08 09:01:06 +01:00
|
|
|
|| ==8.10.4
|
|
|
|
|| ==9.0.1
|
2020-11-03 13:51:48 +01:00
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
README.md
|
|
|
|
CHANGELOG.md
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/futurice/haskell-base64-bytestring-type
|
|
|
|
|
|
|
|
flag cereal
|
|
|
|
description: Instances for @Serialize@ from @cereal@ package
|
|
|
|
manual: True
|
|
|
|
default: True
|
|
|
|
|
|
|
|
flag serialise
|
|
|
|
description: Instances for @Serialise@ from @serialise@ package
|
|
|
|
manual: True
|
|
|
|
default: True
|
|
|
|
|
|
|
|
flag http-api-data
|
|
|
|
description:
|
|
|
|
Instances for @To/FromHttpApiData@ from @http-api-data@ package
|
|
|
|
|
|
|
|
manual: True
|
|
|
|
default: True
|
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
-- boot libraries
|
|
|
|
-- https://ghc.haskell.org/trac/ghc/wiki/Commentary/Libraries/VersionHistory
|
|
|
|
build-depends:
|
2021-03-08 09:01:06 +01:00
|
|
|
base >=4.7.0.0 && <4.16
|
2020-11-03 13:51:48 +01:00
|
|
|
, binary >=0.7.1.0 && <0.10
|
|
|
|
, bytestring >=0.10.4.0 && <0.11
|
|
|
|
, deepseq >=1.3.0.2 && <1.5
|
|
|
|
, text >=1.2.3.0 && <1.3
|
|
|
|
|
|
|
|
-- other dependencies:
|
|
|
|
build-depends:
|
|
|
|
aeson >=1.2.3.0 && <1.6
|
|
|
|
, base-compat >=0.9.3 && <0.12
|
|
|
|
, base64-bytestring >=1.0.0.1 && <1.3
|
|
|
|
, hashable >=1.2.6.1 && <1.4
|
|
|
|
, QuickCheck >=2.11.3 && <2.15
|
|
|
|
|
|
|
|
if !impl(ghc >=8.0)
|
|
|
|
build-depends: semigroups >=0.18.5 && <0.20
|
|
|
|
|
|
|
|
if flag(cereal)
|
|
|
|
build-depends: cereal >=0.5.5.0 && <0.6
|
|
|
|
|
|
|
|
if flag(serialise)
|
|
|
|
build-depends: serialise >=0.2.1.0 && <0.3
|
|
|
|
|
|
|
|
if flag(http-api-data)
|
|
|
|
build-depends: http-api-data ==0.4.*
|
|
|
|
|
|
|
|
exposed-modules:
|
|
|
|
Data.ByteString.Base64.Lazy.Type
|
|
|
|
Data.ByteString.Base64.Type
|
|
|
|
Data.ByteString.Base64.URL.Lazy.Type
|
|
|
|
Data.ByteString.Base64.URL.Type
|
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite tests
|
|
|
|
default-language: Haskell2010
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Tests.hs
|
|
|
|
hs-source-dirs: test
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
-- dependencies with bounds inherited from library:
|
|
|
|
build-depends:
|
|
|
|
aeson
|
|
|
|
, base
|
|
|
|
, base64-bytestring-type
|
|
|
|
, binary
|
|
|
|
, bytestring
|
|
|
|
|
|
|
|
if flag(cereal)
|
|
|
|
build-depends: cereal
|
|
|
|
|
|
|
|
if flag(serialise)
|
|
|
|
build-depends: serialise
|
|
|
|
|
|
|
|
if flag(http-api-data)
|
|
|
|
build-depends: http-api-data
|
|
|
|
|
|
|
|
-- other dependencies
|
|
|
|
build-depends:
|
2021-03-08 09:01:06 +01:00
|
|
|
tasty >=1.2.1 && <1.5
|
2020-11-03 13:51:48 +01:00
|
|
|
, tasty-quickcheck >=0.10 && <0.11
|