cookie-tray-0.0.0.1: cookie-tray.cabal
cabal-version: 3.0
name: cookie-tray
version: 0.0.0.1
synopsis: For serving cookies
category: Web
description:
This package aims to make it easy to set cookies from
your web server, even if you are not intimately familiar
with the details of the Set-Cookie HTTP field.
homepage: https://github.com/typeclasses/cookie-tray
extra-source-files: *.md
license: Apache-2.0
license-file: license.txt
author: Chris Martin
maintainer: Chris Martin, Julie Moronuki
common base
default-language: GHC2021
ghc-options: -Wall
default-extensions:
BlockArguments
DerivingStrategies
LambdaCase
NoImplicitPrelude
TypeFamilies
build-depends:
, base ^>= 4.18 || ^>= 4.19
, binary ^>= 0.8.9
, bytestring ^>= 0.11.4 || ^>= 0.12
, containers ^>= 0.6.5
, cookie ^>= 0.4.6
, time ^>= 1.11.1 || ^>= 1.12
library
import: base
hs-source-dirs: library
exposed-modules:
CookieTray
CookieTray.Command
CookieTray.Command.Many
CookieTray.Command.PutMany
CookieTray.Command.PutOne
CookieTray.Time
other-modules:
CookieTray.Types
test-suite test-cookie-tray
import: base
type: exitcode-stdio-1.0
default-extensions:
OverloadedLists
OverloadedStrings
hs-source-dirs: test
main-is: Main.hs
build-depends:
, cookie-tray
, hspec ^>= 2.9.7 || ^>= 2.10 || ^>= 2.11