name: staversion version: 0.1.1.0 author: Toshio Ito maintainer: Toshio Ito 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, test/data/snapshots.json 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: CPP, DeriveDataTypeable exposed-modules: Staversion.Internal.BuildPlan, Staversion.Internal.BuildPlan.Stackage, Staversion.Internal.Query, Staversion.Internal.Command, Staversion.Internal.Log, Staversion.Internal.Exec, Staversion.Internal.Format other-modules: Paths_staversion, Staversion.Internal.HTTP 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, containers >=0.5.5 && <0.6, http-client >=0.4.18 && <0.6, http-client-tls >=0.2.2 && <0.4, http-types >=0.8.6 && <0.10, transformers >=0.3.0 && <0.6, transformers-compat >=0.4.0 && <0.6 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 -fno-warn-orphans "-with-rtsopts=-M512m" main-is: Spec.hs default-extensions: OverloadedStrings -- other-extensions: other-modules: Staversion.Internal.BuildPlanSpec, Staversion.Internal.BuildPlan.StackageSpec, Staversion.Internal.ExecSpec, Staversion.Internal.FormatSpec, Staversion.Internal.TestUtil build-depends: base, staversion, text, filepath, bytestring, hspec >=2.1.7 && <2.4, QuickCheck flag network-test description: Enable network tests. default: False test-suite network-test type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: test ghc-options: -Wall -fno-warn-unused-imports -fno-warn-orphans "-with-rtsopts=-M512m" main-is: NetworkTest.hs default-extensions: OverloadedStrings if !flag(network-test) buildable: False -- other-extensions: other-modules: Staversion.Internal.TestUtil build-depends: base, staversion, http-client, http-client-tls, bytestring, hspec source-repository head type: git location: https://github.com/debug-ito/staversion.git