forked from lortabac/versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versioning.cabal
53 lines (49 loc) · 1.76 KB
/
versioning.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
name: versioning
version: 0.2.0.0
synopsis: Type-safe data versioning.
description: This package provides various tools to deal with
data versioning in a type-safe way.
homepage: https://github.com/lortabac/versioning
license: Apache-2.0
license-file: LICENSE
author: Lorenzo Tabacchini
maintainer: [email protected]
copyright: (c) 2018 Lorenzo Tabacchini
category: Data
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Versioning.Base
, Versioning.Internal.Base
, Versioning.Internal.Decoding
, Versioning.Upgrade
, Versioning.JSON
build-depends: base >=4.10 && <4.12
, aeson >=1.0 && <1.5
, bytestring >=0.10 && <0.11
, semigroupoids >=5 && <6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if flag(servant)
build-depends: attoparsec
, http-media
, servant
exposed-modules: Versioning.Servant
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Versioning.Tests.Fixtures
build-depends: base >=4.10 && <4.12
, aeson >=1.0 && <1.5
, bytestring >=0.10 && <0.11
, hspec >=2.0 && <2.6
, versioning
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall
flag servant
description: Provide utilities for @servant@
default: True
manual: True