semver-range-0.1.0: semver-range.cabal
name: semver-range
version: 0.1.0
synopsis: An implementation of semver and semantic version ranges.
license: MIT
license-file: LICENSE
author: Allen Nelson
maintainer: anelson@narrativescience.com
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
Data.SemVer.Parser
other-extensions: FlexibleContexts
, FlexibleInstances
, LambdaCase
, NoImplicitPrelude
, NoMonomorphismRestriction
, OverloadedStrings
, QuasiQuotes
, RecordWildCards
, ScopedTypeVariables
, TypeFamilies
, TypeSynonymInstances
build-depends: base >=4.8 && <4.9
, classy-prelude
, text
, unordered-containers
, parsec
hs-source-dirs: src
default-language: Haskell2010