forked from seagreen/hjsonpointer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhjsonpointer.cabal
55 lines (53 loc) · 1.29 KB
/
hjsonpointer.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: hjsonpointer
version: 1.5.0
synopsis: JSON Pointer library
homepage: https://github.com/seagreen/hjsonpointer
license: MIT
license-file: MIT-LICENSE.txt
author: Ian Grant Jeffries
maintainer: [email protected]
category: Data
build-type: Simple
cabal-version: >=1.10
-- Rerun multi-ghc-travis (executable make-travis-yml-2) after changing:
Tested-With: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1
extra-source-files:
changelog.md
README.md
library
hs-source-dirs:
src
default-language: Haskell2010
ghc-options:
-Wall
exposed-modules:
JSONPointer
build-depends:
base >= 4.9 && < 5
, aeson >= 0.7
, hashable >= 1.2
, text >= 1.2
, vector >= 0.10
test-suite unit
hs-source-dirs:
test
./
main-is: Unit.hs
default-language: Haskell2010
type: exitcode-stdio-1.0
default-extensions:
OverloadedStrings
ghc-options:
-Wall
-fno-warn-orphans
other-modules: Example
build-depends:
aeson
, base
, hjsonpointer
, hspec >= 2.2
, http-types >= 0.8
, QuickCheck
, unordered-containers
, text
, vector