-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjsonresume.cabal
28 lines (27 loc) · 1.17 KB
/
jsonresume.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
name: jsonresume
version: 0.1.0.1
synopsis: Parser and datatypes for the JSON Resume format
description: The JSON Resume initiative (<http://jsonresume.org>) provides
a standard format for representing resumes/CVs in JSON
form. This library encodes that standard in Haskell
datatypes, and provides a parser to read a CV in the JSON
Resume format.
homepage: https://github.com/dpwright/jsonresume.hs
license: BSD3
license-file: LICENSE
author: Daniel P. Wright
maintainer: [email protected]
copyright: (c) 2014 Daniel P. Wright
category: Text
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Data.JSONResume
build-depends: base >=4.7 && <4.8,
aeson == 0.8.*,
old-locale == 1.0.*,
text >= 1.1.1.0 && < 1.3,
time == 1.4.*,
unordered-containers == 0.2.*
hs-source-dirs: src
default-language: Haskell2010