packages feed

cryptoids-0.5.1.1: cryptoids.cabal

cabal-version: 1.12

-- SPDX-FileCopyrightText: Gregor Kleen
--
-- SPDX-License-Identifier: BSD-3-Clause

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

source-repository head
  type: git
  location: https://gitlab.com/gkleen/cryptoids.git
  subdir: cryptoids

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