ghup/ghup.cabal

69 lines
2.6 KiB
Plaintext
Raw 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:
build-depends: 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
2020-01-30 22:12:46 +00:00
, pretty-terminal ^>= 0.1
2020-01-30 18:40:08 +00:00
, safe-exceptions ^>= 0.1
, streamly ^>= 0.7
, text ^>= 1.2
2020-01-31 18:34:05 +00:00
, time ^>= 1.9
2020-01-30 18:40:08 +00:00
, unix ^>= 2.7
, utf8-string ^>= 1.0
2020-01-31 14:54:41 +00:00
, vector ^>= 0.12
2020-01-30 18:40:08 +00:00
, word8 ^>= 0.1
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 14:54:41 +00:00
, safe ^>= 0.3
, 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
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