-
Notifications
You must be signed in to change notification settings - Fork 1
/
iCalendar.cabal
35 lines (32 loc) · 1.06 KB
/
iCalendar.cabal
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
name: iCalendar
version: 0.1.0.0
synopsis: iCalendar RFC-5545 parser
homepage: --
license: BSD3
license-file: LICENSE
author: Jon Childress
maintainer: jon@childr.es
category: Web
build-type: Simple
cabal-version: >= 1.10
library
default-language: Haskell2010
hs-source-dirs: src
build-depends: base >= 4.6,
parsec,
parsec-permutation >= 0.1.2.0,
time >= 1.4,
monads-tf >= 0.1.0.1
test-suite spec
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: src, test
build-depends: base >=4.6 && <4.7,
parsec,
parsec-permutation >= 0.1.2.0,
time >= 1.4,
monads-tf >= 0.1.0.1,
-- test-specific libraries
hspec >= 1.8,
containers >= 0.5.0.0