-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverseerr-auto-request.cabal
42 lines (39 loc) · 1.44 KB
/
overseerr-auto-request.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
cabal-version: 3.0
name: overseerr-auto-request
version: 0.1.0.2
synopsis: Automatically request TV shows or movies on Overseerr.
license: MIT
license-file: LICENSE
author: imatpot
maintainer: [email protected]
category: Web
build-type: Simple
extra-doc-files: CHANGELOG.md
common common-properties
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable overseerr-auto-request
import: common-properties
main-is: Main.hs
build-depends: base ^>=4.18,
split ^>=0.2,
dotenv ^>=0.11,
case-insensitive ^>=1.2,
bytestring ^>=0.11,
http-client ^>=0.7,
http-client-tls ^>=0.3,
http-conduit ^>=2.3,
aeson ^>=2.1,
other-modules: Lib.Util,
Lib.Env,
Lib.Http,
Lib.Overseerr.Models,
Lib.Overseerr.Service,
executable http-sink
import: common-properties
main-is: HttpSink.hs
build-depends: base ^>=4.18,
http-types ^>=0.12,
wai ^>=3.2,
warp ^>=3.3,