File: feed.cabal

package info (click to toggle)
haskell-feed 0.3.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 408 kB
  • sloc: haskell: 3,403; xml: 1,096; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 1,997 bytes parent folder | download
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
Name:               feed
Version:            0.3.9.2
License:            BSD3
License-file:       LICENSE
Category:           Text
Synopsis:           Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
Description:        Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
                    .
                    To help working with the multiple feed formats we've
                    ended up with, this set of modules provides parsers,
                    pretty printers and some utility code for querying
                    and just generally working with a concrete representation
                    of feeds in Haskell.
Author:             Sigbjorn Finne <sof@forkIO.com>
Maintainer:         Sigbjorn Finne <sof@forkIO.com>
Homepage:           https://github.com/sof/feed
Extra-Source-Files: tests/Main.hs tests/rss20.xml CHANGES
Cabal-version:   >= 1.2
build-type: Simple

library
    Exposed-Modules: Text.RSS.Syntax
                     Text.RSS.Import
                     Text.RSS.Export
                     Text.RSS1.Syntax
                     Text.RSS1.Import
                     Text.RSS1.Utils
                     Text.RSS1.Export
                     Text.DublinCore.Types
                     Text.Atom.Feed
                     Text.Atom.Feed.Export
                     Text.Atom.Feed.Import
                     Text.Atom.Feed.Link
                     Text.Atom.Feed.Validate
                     Text.Atom.Pub
                     Text.Atom.Pub.Export
                     Text.Feed.Import
                     Text.Feed.Types
                     Text.Feed.Export
                     Text.Feed.Query
                     Text.Feed.Constructor
                     Text.Feed.Translate
                     Text.Feed.Util
    Ghc-Options:     -Wall
    Build-Depends:   base >= 4 && < 5,
                     old-locale >= 1,
                     old-time   >= 1,
                     xml >= 1.2.6,
                     utf8-string,
                     time