json-feed-0.0.1: json-feed.cabal
-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack
name: json-feed
version: 0.0.1
synopsis: JSON Feed
description: This is an implementation of the JSON Feed spec in Haskell. The spec is available at <https://jsonfeed.org>. JSON Feed is similar to the Atom and RSS feed formats, but it is serialized as JSON rather than XML.
category: Web
homepage: https://github.com/tfausak/json-feed#readme
bug-reports: https://github.com/tfausak/json-feed/issues
maintainer: Taylor Fausak
license: MIT
license-file: LICENSE.markdown
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
feeds/allenpike.com.json
feeds/daringfireball.net.json
feeds/flyingmeat.com.json
feeds/hypercritical.co.json
feeds/inessential.com.json
feeds/jsonfeed.org.json
feeds/manton.org.json
feeds/maybepizza.com.json
feeds/shapeof.com.json
feeds/therecord.co.json
feeds/timetable.manton.org.json
source-repository head
type: git
location: https://github.com/tfausak/json-feed
library
hs-source-dirs:
library
ghc-options: -Wall
build-depends:
aeson
, base < 9
, bytestring
, mime-types
, network-uri
, tagsoup
, text
, time
exposed-modules:
JsonFeed
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs:
tests
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends:
aeson
, base < 9
, bytestring
, mime-types
, network-uri
, tagsoup
, text
, time
, filepath
, hspec
, json-feed
default-language: Haskell2010