47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
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
|
|
other-modules:
|
|
-- other-extensions:
|
|
build-depends: base ^>=4.14.1.0
|
|
, wreq
|
|
, aeson
|
|
, lens-aeson
|
|
, lens
|
|
, bytestring
|
|
, text
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
|
|
executable kino
|
|
main-is: Main.hs
|
|
-- other-modules:
|
|
-- other-extensions:
|
|
build-depends:
|
|
base ^>=4.14.1.0,
|
|
kino
|
|
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
|