staversion-0.1.0.0: staversion.cabal
name: staversion
version: 0.1.0.0
author: Toshio Ito <debug.ito@gmail.com>
maintainer: Toshio Ito <debug.ito@gmail.com>
license: BSD3
license-file: LICENSE
synopsis: What version is the package X in stackage lts-Y.ZZ?
description: A command-line tool to look for version numbers for Haskell packages in specific stackage resolvers. See README.md
category: Development
cabal-version: >= 1.10
build-type: Simple
extra-source-files: README.md, ChangeLog.md,
test/data/conpact_build_plan.yaml,
-- Cabal's wild-card (*) doesn't match periods (.)
test/data/lts-7.0_conpact.yaml,
test/data/lts-4.2.yaml,
test/data/lts-2.22_conpact.yaml
homepage: https://github.com/debug-ito/staversion
bug-reports: https://github.com/debug-ito/staversion/issues
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fno-warn-unused-imports
default-extensions: OverloadedStrings
-- other-extensions:
exposed-modules: Staversion.Internal.BuildPlan,
Staversion.Internal.Query,
Staversion.Internal.Command,
Staversion.Internal.Log,
Staversion.Internal.Exec,
Staversion.Internal.Format
other-modules: Paths_staversion
build-depends: base >=4.6 && <4.10,
unordered-containers >=0.2.3 && <0.3,
aeson >=0.8.0 && <1.1,
text >=0.11.3 && <1.3,
bytestring >=0.10.0 && <0.11,
yaml >=0.8.3 && <0.9,
filepath >=1.3.0 && <1.5,
directory >=1.2.0 && <1.3,
optparse-applicative >=0.11.0 && <0.14
executable staversion
default-language: Haskell2010
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -fno-warn-unused-imports -rtsopts -threaded "-with-rtsopts=-N"
-- other-modules:
-- default-extensions:
-- other-extensions:
build-depends: base, staversion
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall -fno-warn-unused-imports "-with-rtsopts=-M512m"
main-is: Spec.hs
default-extensions: OverloadedStrings
-- other-extensions:
other-modules: Staversion.Internal.BuildPlanSpec,
Staversion.Internal.ExecSpec,
Staversion.Internal.FormatSpec,
Staversion.Internal.TestUtil
build-depends: base, staversion, text, filepath,
hspec >=2.1.7 && <2.4
source-repository head
type: git
location: https://github.com/debug-ito/staversion.git