ical-0.0.1: ical.cabal
name: ical
version: 0.0.1
synopsis: iCalendar format parser and org-mode converter.
description: Please see README.md
homepage: http://github.com/chrisdone/ical#readme
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: chrisdone@gmail.com
copyright: 2015 Chris Done
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: ICal, ICal.Types, ICal.Org, ICal.Tokenizer, ICal.Parser
build-depends: aeson
, attoparsec
, base >= 4.7 && < 5
, containers
, either
, mtl
, text
, time
, transformers
default-language: Haskell2010
executable ical-org
hs-source-dirs: src/main
ghc-options: -Wall
main-is: Org.hs
build-depends: base >= 4.7 && < 5
, ical
, time
default-language: Haskell2010
test-suite ical-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, ical
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/chrisdone/ical