name: wai-secure-cookies
version: 0.1.0.2
description: WAI middleware to automatically encrypt and sign cookies
homepage: https://github.com/habibalamin/wai-secure-cookies
license: MIT
license-file: LICENSE
author: Habib Alamin
maintainer: ha.alamin@gmail.com
copyright: © حبيب الامين 2017
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Cookie.Secure.Middleware
other-modules: Cookie.Secure
, Crypto.Encryption
, Crypto.Verification
, Extension.ByteString
build-depends: base >= 4.7 && < 5
, protolude >= 0.2 && < 0.3
, wai >= 3.2 && < 4
, cryptonite >= 0.24 && < 0.25
, bytestring >= 0.10 && < 0.11
, memory >= 0.14 && < 0.15
, random >= 1.1 && < 2
, split >= 0.2 && < 0.3
, http-types >= 0.9 && < 0.10
executable waicookie-genkey
hs-source-dirs: keygensrc
default-language: Haskell2010
main-is: Main.hs
build-depends: base >= 4.7 && < 5
, cryptonite >= 0.24 && < 0.25
, bytestring >= 0.10 && < 0.11
, memory >= 0.14 && < 0.15