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

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

library
    exposed-modules:
        Data.CryptoID.Poly
    build-depends:
        base >=4.9.1.0 && <4.11,
        cryptoids-types ==0.0.0,
        cryptonite >=0.23 && <0.25,
        bytestring >=0.10.8.1 && <0.11,
        binary >=0.8.3.0 && <0.9,
        memory >=0.14.6 && <0.15,
        mtl >=2.2.1 && <2.3
    default-language: Haskell2010
    default-extensions: RankNTypes DataKinds GeneralizedNewtypeDeriving
                        ViewPatterns RecordWildCards FlexibleContexts
    hs-source-dirs: src