-
Notifications
You must be signed in to change notification settings - Fork 6
/
semver-range.cabal
52 lines (49 loc) · 1.9 KB
/
semver-range.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
name: semver-range
version: 0.2.8
synopsis: An implementation of semver and semantic version ranges.
description: Provides parsing of semvers and range indicators, as well as logic such as version ordering and determining whether a given version falls in a given range.
license: MIT
license-file: LICENSE
author: Allen Nelson
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
bug-reports: https://github.com/adnelson/semver-range/issues
source-repository head
type: git
location: git://github.com/adnelson/semver-range.git
library
Exposed-modules: Data.SemVer
other-modules: Data.SemVer.Parser
, Data.SemVer.Types
other-extensions: FlexibleContexts
, FlexibleInstances
, LambdaCase
, NoImplicitPrelude
, NoMonomorphismRestriction
, OverloadedStrings
, QuasiQuotes
, RecordWildCards
, ScopedTypeVariables
, TypeFamilies
, TypeSynonymInstances
build-depends: base >=4.8 && <5
, classy-prelude
, text
, unordered-containers
, parsec
hs-source-dirs: src
default-language: Haskell2010
test-suite unit-tests
type: exitcode-stdio-1.0
hs-source-dirs: src, tests
main-is: Unit.hs
build-depends: base
, classy-prelude
, text
, unordered-containers
, parsec
, hspec
, QuickCheck
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010