forked from snoyberg/cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookie.cabal
45 lines (42 loc) · 1.48 KB
/
cookie.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: cookie
version: 0.5.0
license: MIT
license-file: LICENSE
author: Michael Snoyman <[email protected]>
maintainer: Michael Snoyman <[email protected]>
synopsis: HTTP cookie parsing and rendering
description: Hackage documentation generation is not reliable. For up to date documentation, please see: <https://www.stackage.org/package/cookie>.
category: Web, Yesod
stability: Stable
cabal-version: >= 1.10
build-type: Simple
homepage: http://github.com/snoyberg/cookie
extra-source-files: README.md ChangeLog.md
library
default-language: Haskell2010
build-depends: base >= 4 && < 5
, bytestring >= 0.10.2
, time >= 1.5
, text >= 1.1
, data-default-class
, deepseq
exposed-modules: Web.Cookie
ghc-options: -Wall
test-suite test
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends: base
, HUnit
, QuickCheck
, bytestring >= 0.10.2
, cookie
, tasty
, tasty-hunit
, tasty-quickcheck
, text >= 1.1
, time >= 1.5
source-repository head
type: git
location: git://github.com/snoyberg/cookie.git