-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyanimelist-export.cabal
66 lines (62 loc) · 2.6 KB
/
myanimelist-export.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: myanimelist-export
version: 0.3.0.0
synopsis: Export from MyAnimeList
description:
Export anime or manga lists from MyAnimeList in XML format. Uses the web
interface, because the malappinfo API exports in a slightly different format
which causes problems on importing.
homepage: https://github.com/mat8913/myanimelist-export#readme
bug-reports: https://github.com/mat8913/myanimelist-export/issues
license: GPL-3
license-file: LICENSE
author: Matthew Harm Bekkema
maintainer: [email protected]
copyright: 2017-2018 Matthew Harm Bekkema
category: Web
build-type: Simple
extra-source-files: README.md
, ChangeLog.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.3
library
hs-source-dirs: src
exposed-modules: MyAnimeList.Export
other-modules: MemoizedTraverse
ghc-options: -Wall
build-depends: base >= 4.9 && < 4.12
, async >= 2.1 && < 2.3
, bytestring >= 0.10 && < 0.11
, conduit >= 1.2 && < 1.4
, containers >= 0.5 && < 0.7
, exceptions >= 0.4 && < 0.11
, http-client >= 0.4.30 && < 0.6
, network-uri >= 2.6 && < 2.7
, tagstream-conduit >= 0.5 && < 0.6
, text >= 1.2 && < 1.3
default-language: Haskell2010
other-extensions: OverloadedStrings
executable myanimelist-export
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, myanimelist-export
, bytestring
, conduit
, http-client
, network-uri
, text
, aeson >= 0.7 && < 1.5
, conduit-extra >= 1.1 && < 1.4
, directory >= 1.2.3 && < 1.4
, http-client-tls >= 0.2.4 && < 0.4
, yaml >= 0.8.4 && < 0.9
default-language: Haskell2010
other-extensions: TemplateHaskell
OverloadedStrings
RecordWildCards
source-repository head
type: git
location: https://github.com/mat8913/myanimelist-export