packages feed

yesod-auth-hmac-keccak-0.0.0.2: yesod-auth-hmac-keccak.cabal

-- Initial yesod-auth-hmac-keccak.cabal generated by cabal init.  For 
-- further documentation, see http://haskell.org/cabal/users-guide/

name:                yesod-auth-hmac-keccak
version:             0.0.0.2
synopsis:            An account authentication plugin for yesod with encrypted
                     token transfer.
description:         This authentication plugin for Yesod uses a challenge-response
                     authentication mechanism, where the password is encrypted via HMAC-
                     Keccak on the client side.
license:             MIT
license-file:        LICENSE
author:              nek0
maintainer:          nek0@chelnok.de
-- copyright:           
category:            Web
build-type:          Custom
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10
-- setup-depends:       purescript
--                    , Glob
extra-source-files:  src/Activate.purs
                   , src/Common.js
                   , src/Common.purs
                   , src/Login.purs
                   , src/Main.purs
                   , bower.json
data-files:          static/js/auth.js

Source-repository head
  type:              git
  location:          git://github.com/nek0/yesod-auth-hmac-keccak.git

library
  exposed-modules:     Yesod.Auth.HmacKeccak
                       Yesod.Auth.Message
                     , Yesod.Auth.Import
                     , Yesod.Auth.Types
  other-modules:       Paths_yesod_auth_hmac_keccak
                     , Yesod.Auth.JsPath
  -- other-extensions:    
  default-extensions:  OverloadedStrings
  ghc-options:         -Wall
  build-depends:       base >=4.9 && <4.10
                     , text
                     , bytestring
                     , aeson
                     , cryptonite
                     , yesod-core
                     , yesod-form
                     , yesod-auth
                     , yesod-static
                     , yesod-persistent
                     , persistent
                     , random
                     , mtl
                     , shakespeare
                     -- dependencies for purescript and compiling
                     -- , purescript
                     -- , Glob
  hs-source-dirs:      hssrc
  default-language:    Haskell2010