-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaeson-commit.cabal
50 lines (45 loc) · 1.43 KB
/
aeson-commit.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
cabal-version: >=1.10
name: aeson-commit
version: 1.6.0
license: BSD3
copyright: 2020 Cross Compass Ltd.
maintainer: Jonas Carpay <[email protected]>
homepage: https://github.com/xc-jp/aeson-commit#readme
author:
Viktor Kronvall <[email protected]>,
Jonas Carpay <[email protected]>
synopsis: Parse Aeson data with commitment
description:
Commitment mechanism for @aeson@ parsers.
Commitment means that if some initial parsing succeeds, subsequent failures are unrecoverable.
category: Text, Web, JSON
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: git://github.com/xc-jp/aeson-commit
library
exposed-modules: Data.Aeson.Commit
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing
build-depends:
aeson >=1.4 && <2.2
, base >=4.10 && <5
, text >=1.2 && <2
, transformers >=0.5 && <0.7
test-suite tasty
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test/tasty
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing
build-depends:
aeson >=1.4 && <2.2
, aeson-commit
, aeson-qq >=0.8 && <1
, base >=4.10 && <5
, hspec
, text >=1.2 && <2