-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathyesod-csp.cabal
More file actions
55 lines (51 loc) · 1.76 KB
/
yesod-csp.cabal
File metadata and controls
55 lines (51 loc) · 1.76 KB
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
46
47
48
49
50
51
52
53
54
55
-- Initial yesod-csp.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: yesod-csp
version: 0.2.5.0
synopsis: Add CSP headers to Yesod apps
description: Add CSP headers to Yesod apps. This helps reduce exposure to XSS attacks and bad assets.
license: MIT
license-file: LICENSE
author: Bob Long
maintainer: robertjflong@gmail.com
category: Web
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/bobjflong/yesod-csp.git
library
exposed-modules: Yesod.Csp
, Yesod.Csp.Example
, Yesod.Csp.TH
-- other-extensions:
build-depends: base < 5
, text
, yesod-core
, semigroups
, network-uri
, yesod
, mono-traversable
, attoparsec
, template-haskell
, syb
, wai
, case-insensitive
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite tests
ghc-options: -Wall
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test
build-depends: base
, yesod-csp
, yesod-test
, semigroups
, yesod
, hspec
, network-uri
, attoparsec
, template-haskell
default-language: Haskell2010