name: ical version: 0.0.0 x-revision: 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: 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 >= 0.8.0.2 , attoparsec >= 0.12.1.6 , base >= 4.7 && < 5 , containers >= 0.5.6.2 , either >= 4.4.1 && <5 , mtl >= 2.2.1 , text >= 1.2.1.3 , time >= 1.5.0.1 , transformers >= 0.4.2.0 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