ghup/ghup.cabal

72 lines
2.8 KiB
Plaintext
Raw Permalink Normal View History

2020-01-30 18:40:08 +00:00
cabal-version: 2.4
name: ghup
version: 0.1.0.0
synopsis: Simple github helpers
-- description:
bug-reports: https://github.com/hasufell/ghup/issues
license: GPL-3.0-only
license-file: LICENSE
author: Julian Ospald <hasufell@posteo.de>
maintainer: Julian Ospald <hasufell@posteo.de>
copyright: Julian Ospald 2016
category: Network
extra-source-files: CHANGELOG.md
README.md
library
exposed-modules: GHup
-- other-modules:
-- other-extensions:
2020-02-02 14:42:03 +00:00
build-depends: aeson ^>= 1.4
, attoparsec ^>= 0.13
, base ^>= 4.12
, bytestring ^>= 0.10
, github ^>= 0.24
, hpath ^>= 0.11
, hpath-io ^>= 0.13.1
, http-client ^>= 0.6.4
, mtl ^>= 2.2
, pretty-terminal ^>= 0.1
, safe-exceptions ^>= 0.1
, streamly ^>= 0.7
, text ^>= 1.2
, time ^>= 1.9
, unix ^>= 2.7
2020-02-02 13:33:25 +00:00
, unordered-containers ^>= 0.2
2020-02-02 14:42:03 +00:00
, utf8-string ^>= 1.0
, vector ^>= 0.12
, word8 ^>= 0.1
2020-01-30 18:40:08 +00:00
hs-source-dirs: lib
ghc-options: -Wall
default-language: Haskell2010
2020-01-30 22:12:46 +00:00
default-extensions: LambdaCase, MultiWayIf, RecordWildCards, TupleSections
2020-01-30 18:40:08 +00:00
executable ghup
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>= 4.12
, bytestring ^>= 0.10
2020-01-31 14:54:41 +00:00
, dates ^>= 0.2
2020-01-31 16:38:29 +00:00
, errors ^>= 2.3
2020-01-30 18:40:08 +00:00
, ghup
, github ^>= 0.24
, hpath ^>= 0.11
2020-01-31 14:54:41 +00:00
, mtl ^>= 2.2
2020-01-30 18:40:08 +00:00
, optparse-applicative ^>= 0.15
2020-01-30 22:12:46 +00:00
, pretty-terminal ^>= 0.1
2020-01-31 22:18:45 +00:00
, table-layout ^>= 0.8
2020-01-31 14:54:41 +00:00
, text ^>= 1.2
2020-01-31 18:34:05 +00:00
, time ^>= 1.9
2020-01-31 14:54:41 +00:00
, utf8-string ^>= 1.0
2020-01-30 18:40:08 +00:00
hs-source-dirs: app
2020-01-31 22:25:14 +00:00
ghc-options: -Wall
2020-01-30 18:40:08 +00:00
default-language: Haskell2010
2020-01-30 22:12:46 +00:00
default-extensions: LambdaCase, MultiWayIf, RecordWildCards, TupleSections
2020-01-30 18:40:08 +00:00
source-repository head
type: git
location: https://github.com/hasufell/ghup