packages feed

crypto-token-0.0.1: crypto-token.cabal

name:                crypto-token
version:             0.0.1
synopsis:            crypto tokens
description:         Encrypted tokens/tickets to keep state in the client side.
license:             BSD3
license-file:        LICENSE
author:              Kazu Yamamoto <kazu@iij.ad.jp>
maintainer:          Kazu Yamamoto <kazu@iij.ad.jp>
category:            Cryptography, Network
cabal-version:       >= 1.10
build-type:          Simple

library
  default-language:    Haskell2010
  ghc-options:         -Wall
  exposed-modules:     Crypto.Token
  build-depends:       base >= 4.9 && < 5
                     , array
                     , cryptonite
                     , memory
  if impl(ghc >= 8)
    default-extensions:  Strict StrictData

source-repository head
  type:                 git
  location:             git://github.com/kazu-yamamoto/crypto-token