2011-01-17 17:41:47 +03:00
|
|
|
name: wai-app-static
|
2012-04-09 11:11:52 +04:00
|
|
|
version: 1.2.0.1
|
2012-04-03 11:41:15 +04:00
|
|
|
license: MIT
|
2011-01-17 17:41:47 +03:00
|
|
|
license-file: LICENSE
|
|
|
|
author: Michael Snoyman <michael@snoyman.com>
|
|
|
|
maintainer: Michael Snoyman <michael@snoyman.com>
|
|
|
|
synopsis: WAI application for static serving
|
|
|
|
description: Also provides some helper functions and datatypes for use outside of WAI.
|
|
|
|
category: Web, Yesod
|
|
|
|
stability: Stable
|
2011-02-28 19:26:26 +03:00
|
|
|
cabal-version: >= 1.8
|
2011-01-17 17:41:47 +03:00
|
|
|
build-type: Simple
|
2011-07-22 18:02:16 +04:00
|
|
|
homepage: http://www.yesodweb.com/book/wai
|
2011-09-23 17:23:11 +04:00
|
|
|
Extra-source-files:
|
2011-11-28 08:22:33 +04:00
|
|
|
images/folder.png
|
|
|
|
images/haskell.png
|
|
|
|
test/WaiAppStaticTest.hs
|
|
|
|
test/a/b
|
|
|
|
tests.hs
|
2011-01-17 17:41:47 +03:00
|
|
|
|
2011-02-28 19:26:26 +03:00
|
|
|
Flag print
|
|
|
|
Description: print debug info
|
2011-05-21 20:37:21 +04:00
|
|
|
Default: False
|
2011-02-28 19:26:26 +03:00
|
|
|
|
2011-01-17 17:41:47 +03:00
|
|
|
library
|
|
|
|
build-depends: base >= 4 && < 5
|
2012-02-26 10:49:28 +04:00
|
|
|
, wai >= 1.2 && < 1.3
|
2011-01-17 17:41:47 +03:00
|
|
|
, bytestring >= 0.9.1.4 && < 0.10
|
2011-04-07 23:01:18 +04:00
|
|
|
, http-types >= 0.6 && < 0.7
|
2012-03-28 18:16:40 +04:00
|
|
|
, transformers >= 0.2.2 && < 0.4
|
2011-11-28 14:48:31 +04:00
|
|
|
, unix-compat >= 0.2
|
2011-11-23 08:19:39 +04:00
|
|
|
, directory >= 1.0.1 && < 1.2
|
2011-01-17 17:41:47 +03:00
|
|
|
, containers >= 0.2 && < 0.5
|
2011-01-20 02:07:12 +03:00
|
|
|
, blaze-html >= 0.4 && < 0.5
|
2011-11-28 21:12:47 +04:00
|
|
|
, time >= 1.1.4
|
2011-01-20 02:07:12 +03:00
|
|
|
, old-locale >= 1.0.0.2 && < 1.1
|
2011-01-20 17:29:49 +03:00
|
|
|
, file-embed >= 0.0.3.1 && < 0.1
|
2011-11-23 08:19:39 +04:00
|
|
|
, text >= 0.7 && < 0.12
|
2011-04-07 23:01:18 +04:00
|
|
|
, blaze-builder >= 0.2.1.4 && < 0.4
|
2011-06-07 14:20:05 +04:00
|
|
|
, base64-bytestring >= 0.1 && < 0.2
|
|
|
|
, cryptohash >= 0.7 && < 0.8
|
2011-06-30 10:01:42 +04:00
|
|
|
, http-date
|
2011-01-17 17:41:47 +03:00
|
|
|
exposed-modules: Network.Wai.Application.Static
|
|
|
|
ghc-options: -Wall
|
2011-02-28 19:26:26 +03:00
|
|
|
extensions: CPP
|
|
|
|
|
|
|
|
if flag(print)
|
|
|
|
cpp-options: -DPRINT
|
|
|
|
|
|
|
|
test-suite runtests
|
2011-11-26 17:57:29 +04:00
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: ../tests.hs
|
2011-02-28 19:26:26 +03:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
|
|
|
|
build-depends: base >= 4 && < 5
|
2011-11-07 07:20:47 +04:00
|
|
|
, hspec >= 0.8 && < 0.10
|
2011-02-28 19:26:26 +03:00
|
|
|
, HUnit
|
2011-11-28 14:48:31 +04:00
|
|
|
, unix-compat >= 0.2
|
2011-12-25 02:42:22 +04:00
|
|
|
, time >= 1.1.4
|
2011-06-30 10:01:42 +04:00
|
|
|
, old-locale >= 1.0.0.2 && < 1.1
|
|
|
|
, http-date
|
2012-02-26 10:49:28 +04:00
|
|
|
, wai-app-static >= 1.2
|
2011-02-28 19:26:26 +03:00
|
|
|
, wai-test
|
2011-05-08 05:42:57 +04:00
|
|
|
, wai
|
|
|
|
, http-types
|
2011-02-28 19:26:26 +03:00
|
|
|
, network
|
|
|
|
, bytestring
|
2011-05-08 05:42:57 +04:00
|
|
|
, text
|
2011-05-21 20:37:21 +04:00
|
|
|
, transformers
|
2011-05-08 05:42:57 +04:00
|
|
|
-- , containers
|
2011-02-28 19:26:26 +03:00
|
|
|
ghc-options: -Wall
|
2011-01-17 17:41:47 +03:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
2011-07-22 18:02:16 +04:00
|
|
|
location: git://github.com/yesodweb/wai.git
|