cryptoids/cryptoids/cryptoids.cabal
2017-10-10 03:40:23 +02:00

35 lines
1.1 KiB
Plaintext

-- Initial cryptoids.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: cryptoids
version: 0.0.0
synopsis: Reversable and secure encoding of object ids as a bytestring
-- description:
license: BSD3
license-file: LICENSE
author: Gregor Kleen
maintainer: aethoago@141.li
-- copyright:
category: cryptography
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Data.CryptoID.Poly
-- other-modules:
default-extensions: RankNTypes
, DataKinds
, GeneralizedNewtypeDeriving
, ViewPatterns
, RecordWildCards
, FlexibleContexts
build-depends: base >=4.9 && <4.10
, cryptoids-types
, cryptonite
, bytestring
, binary
, memory
, mtl
hs-source-dirs: src
default-language: Haskell2010