name: cryptoids
version: 0.5.0.0
x-revision: 4
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: Gregor Kleen <aethoago@141.li>
synopsis: Reversable and secure encoding of object ids as a bytestring
category: cryptography
author: Gregor Kleen <aethoago@141.li>
extra-source-files:
    changes.md

source-repository head
    type: git
    location: https://git.rheperire.org/cryptoids/cryptoids

library
    exposed-modules:
        Data.CryptoID.Poly
        Data.CryptoID.Poly.ImplicitNamespace
        Data.CryptoID.ByteString
        Data.CryptoID.ByteString.ImplicitNamespace
    build-depends:
        base >=4.9 && <5
      , binary >=0.8.3 && <0.9
      , bytestring >=0.10.8 && <0.11
      , cryptoids-class >=0.0 && <0.1
      , cryptoids-types >=0.0 && <0.1
      , cryptonite >=0.23 && <0.26
      , directory >=1.3.0 && <1.4
      , exceptions >=0.8.3 && <0.11
      , filepath >=1.4.1 && <1.5
      , memory >=0.14.6 && <0.15
    default-language: Haskell2010
    default-extensions: RankNTypes DataKinds GeneralizedNewtypeDeriving
                        ViewPatterns RecordWildCards FlexibleContexts FlexibleInstances
                        MultiParamTypeClasses TypeFamilies ConstraintKinds
    hs-source-dirs: src
    other-modules:
        Paths_cryptoids
    ghc-options: -Wall -fno-warn-name-shadowing