2021-09-05 19:30:29 +02:00
|
|
|
cabal-version: 2.4
|
|
|
|
name: kino
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: A terminal interface to the yts.mx api
|
|
|
|
-- description:
|
|
|
|
homepage:
|
|
|
|
-- bug-reports:
|
|
|
|
license: ISC
|
|
|
|
license-file: LICENSE
|
|
|
|
author: depsterr
|
|
|
|
maintainer: depsterr@protonmail.com
|
|
|
|
-- copyright:
|
|
|
|
category: Movie
|
|
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Request
|
|
|
|
, JSONTypes
|
2021-09-06 21:02:39 +02:00
|
|
|
, UI
|
|
|
|
, Torrent
|
2021-09-05 19:30:29 +02:00
|
|
|
other-modules:
|
|
|
|
-- other-extensions:
|
2021-09-13 19:00:26 +02:00
|
|
|
ghc-options: -Wall
|
2021-09-05 19:30:29 +02:00
|
|
|
build-depends: base ^>=4.14.1.0
|
|
|
|
, wreq
|
|
|
|
, aeson
|
|
|
|
, lens-aeson
|
|
|
|
, lens
|
|
|
|
, bytestring
|
|
|
|
, text
|
2021-09-06 21:02:39 +02:00
|
|
|
, brick
|
|
|
|
, HTTP
|
2021-09-05 19:30:29 +02:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable kino
|
|
|
|
main-is: Main.hs
|
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2021-09-13 19:00:26 +02:00
|
|
|
ghc-options: -Wall
|
2021-09-06 21:02:39 +02:00
|
|
|
build-depends: base ^>=4.14.1.0
|
|
|
|
, kino
|
|
|
|
, brick
|
|
|
|
, text
|
2021-09-05 19:30:29 +02:00
|
|
|
hs-source-dirs: app
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite kino-test
|
|
|
|
default-language: Haskell2010
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: MyLibTest.hs
|
|
|
|
build-depends: base ^>=4.14.1.0
|