42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
-- Initial uuid-crypto.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: uuid-crypto
|
|
version: 1.0.0
|
|
synopsis: Reversable and secure encoding of object ids as uuids
|
|
-- 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.UUID.Cryptographic
|
|
-- other-modules:
|
|
default-extensions: KindSignatures
|
|
, ViewPatterns
|
|
, FlexibleContexts
|
|
, GeneralizedNewtypeDeriving
|
|
, PatternGuards
|
|
, RecordWildCards
|
|
, DataKinds
|
|
, DeriveDataTypeable
|
|
, DeriveGeneric
|
|
other-extensions: ScopedTypeVariables
|
|
build-depends: base >=4.9 && <4.11
|
|
, cryptoids-types
|
|
, cryptoids
|
|
, uuid
|
|
, cryptonite
|
|
, binary
|
|
, memory
|
|
, bytestring
|
|
, mtl
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -fno-warn-name-shadowing
|