1
1
mirror of https://github.com/sol/hpack.git synced 2024-10-04 11:47:15 +03:00
hpack/hpack.cabal

195 lines
4.1 KiB
Plaintext
Raw Normal View History

cabal-version: >= 1.10
2018-07-17 00:05:41 +03:00
-- This file has been generated from package.yaml by hpack version 0.29.5.
--
2015-04-20 11:23:58 +03:00
-- see: https://github.com/sol/hpack
--
2018-08-03 11:48:51 +03:00
-- hash: d8b2a418f831494685f8d946c109f4cf86371e5f1a41613bdd538aa6ed27817c
2015-04-20 11:23:58 +03:00
name: hpack
2018-08-03 11:48:51 +03:00
version: 0.29.6
2018-07-17 00:05:41 +03:00
synopsis: A modern format for Haskell packages
description: See README at <https://github.com/sol/hpack#readme>
2015-08-13 10:43:22 +03:00
category: Development
2015-07-02 14:46:13 +03:00
homepage: https://github.com/sol/hpack#readme
bug-reports: https://github.com/sol/hpack/issues
2015-04-27 07:51:55 +03:00
maintainer: Simon Hengel <sol@typeful.net>
2015-04-07 12:33:24 +03:00
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
source-repository head
type: git
2015-07-02 14:46:13 +03:00
location: https://github.com/sol/hpack
2015-04-10 05:47:48 +03:00
2015-07-02 17:33:23 +03:00
library
2015-07-09 11:32:23 +03:00
hs-source-dirs:
src
ghc-options: -Wall
2015-07-02 17:33:23 +03:00
build-depends:
Cabal >=2.2
, Glob >=0.9.0
, aeson >=1.2.1.0
2018-02-09 06:11:20 +03:00
, base >=4.9 && <5
2017-10-26 16:15:46 +03:00
, bifunctors
, bytestring
2017-09-25 12:44:16 +03:00
, containers
, cryptonite
2015-07-02 17:33:23 +03:00
, deepseq
, directory
, filepath
2017-12-22 14:29:20 +03:00
, http-client
, http-client-tls
, http-types
, infer-license >=0.2.0 && <0.3
2017-09-25 12:44:16 +03:00
, pretty
, scientific
2015-07-02 17:33:23 +03:00
, text
2017-11-23 20:36:11 +03:00
, transformers
2015-07-02 17:33:23 +03:00
, unordered-containers
2018-01-29 16:12:50 +03:00
, vector
2015-07-02 17:33:23 +03:00
, yaml
2015-07-09 05:13:36 +03:00
exposed-modules:
2016-02-05 16:17:11 +03:00
Hpack
2015-07-09 05:13:36 +03:00
Hpack.Config
2018-02-07 11:14:35 +03:00
Hpack.Render
2015-08-26 12:48:51 +03:00
Hpack.Yaml
2015-07-09 05:13:36 +03:00
other-modules:
2018-01-29 16:12:50 +03:00
Data.Aeson.Config.FromValue
Data.Aeson.Config.Parser
Data.Aeson.Config.Types
Data.Aeson.Config.Util
Hpack.CabalFile
2017-12-22 14:29:20 +03:00
Hpack.Defaults
Hpack.Haskell
Hpack.License
Hpack.Options
2018-02-07 01:57:24 +03:00
Hpack.Render.Dsl
Hpack.Render.Hints
2018-01-29 16:12:50 +03:00
Hpack.Syntax.Defaults
Hpack.Syntax.Dependency
2018-07-18 11:34:31 +03:00
Hpack.Syntax.DependencyVersion
Hpack.Syntax.Git
Hpack.Utf8
2015-07-09 05:13:36 +03:00
Hpack.Util
2016-02-05 16:54:09 +03:00
Paths_hpack
default-language: Haskell2010
2015-07-02 17:33:23 +03:00
2015-04-20 11:23:58 +03:00
executable hpack
main-is: Main.hs
2015-07-09 11:32:23 +03:00
hs-source-dirs:
driver
ghc-options: -Wall
build-depends:
Cabal >=2.2
, Glob >=0.9.0
, aeson >=1.2.1.0
2018-02-09 06:11:20 +03:00
, base >=4.9 && <5
2017-10-26 16:15:46 +03:00
, bifunctors
, bytestring
2017-09-25 12:44:16 +03:00
, containers
, cryptonite
2015-04-07 13:22:02 +03:00
, deepseq
2015-04-04 06:46:48 +03:00
, directory
, filepath
2017-09-25 12:44:16 +03:00
, hpack
2017-12-22 14:29:20 +03:00
, http-client
, http-client-tls
, http-types
, infer-license >=0.2.0 && <0.3
2017-09-25 12:44:16 +03:00
, pretty
, scientific
, text
2017-11-23 20:36:11 +03:00
, transformers
2015-04-04 06:46:48 +03:00
, unordered-containers
2018-01-29 16:12:50 +03:00
, vector
2015-04-04 06:46:48 +03:00
, yaml
2017-09-25 12:44:16 +03:00
other-modules:
Paths_hpack
default-language: Haskell2010
2015-04-10 05:47:48 +03:00
test-suite spec
2015-03-27 13:15:21 +03:00
type: exitcode-stdio-1.0
main-is: Spec.hs
2015-07-09 11:32:23 +03:00
hs-source-dirs:
test
2017-02-22 12:27:23 +03:00
src
2015-08-31 09:11:04 +03:00
ghc-options: -Wall
cpp-options: -DTEST
build-depends:
Cabal >=2.2
, Glob >=0.9.0
2018-03-11 19:06:24 +03:00
, HUnit >=1.6.0.0
2017-09-25 12:44:16 +03:00
, QuickCheck
, aeson >=1.2.1.0
2018-02-09 06:11:20 +03:00
, base >=4.9 && <5
2017-10-26 16:15:46 +03:00
, bifunctors
, bytestring
2017-09-25 12:44:16 +03:00
, containers
, cryptonite
2015-04-07 13:22:02 +03:00
, deepseq
, directory
, filepath
2017-09-25 12:44:16 +03:00
, hspec ==2.*
2017-12-22 14:29:20 +03:00
, http-client
, http-client-tls
, http-types
, infer-license >=0.2.0 && <0.3
2017-09-25 12:44:16 +03:00
, interpolate
, mockery >=0.3
, pretty
, scientific
2018-01-29 16:12:50 +03:00
, template-haskell
2017-09-25 12:44:16 +03:00
, temporary
, text
2017-11-23 20:36:11 +03:00
, transformers
2015-03-27 13:15:21 +03:00
, unordered-containers
2018-01-29 16:12:50 +03:00
, vector
, yaml >=0.8.28
2015-07-09 05:13:36 +03:00
other-modules:
2018-01-29 16:12:50 +03:00
Data.Aeson.Config.FromValueSpec
Data.Aeson.Config.TypesSpec
Data.Aeson.Config.UtilSpec
2017-10-26 16:26:23 +03:00
EndToEndSpec
2015-07-09 05:13:36 +03:00
Helper
Hpack.CabalFileSpec
2015-07-09 05:13:36 +03:00
Hpack.ConfigSpec
2017-12-22 14:29:20 +03:00
Hpack.DefaultsSpec
Hpack.HaskellSpec
Hpack.LicenseSpec
Hpack.OptionsSpec
2018-02-07 01:57:24 +03:00
Hpack.Render.DslSpec
Hpack.Render.HintsSpec
2015-07-09 11:32:23 +03:00
Hpack.RenderSpec
2018-01-29 16:12:50 +03:00
Hpack.Syntax.DefaultsSpec
Hpack.Syntax.DependencySpec
Hpack.Syntax.GitSpec
Hpack.Utf8Spec
2015-07-09 05:13:36 +03:00
Hpack.UtilSpec
HpackSpec
2018-01-29 16:12:50 +03:00
Data.Aeson.Config.FromValue
Data.Aeson.Config.Parser
Data.Aeson.Config.Types
Data.Aeson.Config.Util
2016-02-05 16:17:11 +03:00
Hpack
Hpack.CabalFile
2015-07-09 05:13:36 +03:00
Hpack.Config
2017-12-22 14:29:20 +03:00
Hpack.Defaults
Hpack.Haskell
Hpack.License
Hpack.Options
2015-07-09 11:32:23 +03:00
Hpack.Render
2018-02-07 01:57:24 +03:00
Hpack.Render.Dsl
Hpack.Render.Hints
2018-01-29 16:12:50 +03:00
Hpack.Syntax.Defaults
Hpack.Syntax.Dependency
2018-07-18 11:34:31 +03:00
Hpack.Syntax.DependencyVersion
Hpack.Syntax.Git
Hpack.Utf8
2015-07-09 05:13:36 +03:00
Hpack.Util
2015-08-26 12:48:51 +03:00
Hpack.Yaml
2017-09-25 12:44:16 +03:00
Paths_hpack
default-language: Haskell2010