31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
name: cryptoids-types
|
|
synopsis: Shared types for encrypting internal object identifiers before exposure
|
|
version: 0.0.0
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Gregor Kleen
|
|
maintainer: aethoago@141.li
|
|
category: Web
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
extra-source-files: changes.md
|
|
source-repository head
|
|
type: git
|
|
location: https://git.rheperire.org/cryptoids
|
|
subdir: cryptoids-types
|
|
|
|
library
|
|
exposed-modules: Data.CryptoID
|
|
default-extensions: KindSignatures
|
|
, DataKinds
|
|
, GeneralizedNewtypeDeriving
|
|
, DeriveGeneric
|
|
, DeriveDataTypeable
|
|
build-depends: base >=4.9 && <4.11
|
|
, binary >=0.8.3.0 && <0.9
|
|
, path-pieces >=0.2.1 && <0.3
|
|
, http-api-data >=0.3.7.1 && <0.4
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -fno-warn-name-shadowing
|