-
Notifications
You must be signed in to change notification settings - Fork 10
/
openmemex.cabal
61 lines (59 loc) · 1.97 KB
/
openmemex.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
name: openmemex
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/austinvhuang/openmemex#readme
license: Apache
license-file: LICENSE
author: Austin Huang
copyright: 2021 Austin Huang
category: Tools
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable server
hs-source-dirs: server, shared
main-is: Main.hs
other-modules: DB, Files, OCR, Models, SQL, CrawlTools, Date, API, ArgParser
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, aeson
, bytestring
, directory
, filepath
, mtl
, network-uri
, optparse-applicative
, optparse-generic
, pretty-simple
, process >= 1.6.9.0
, scalpel
, servant-server
, sqlite-simple
, servant-swagger
, swagger2
, text
, time
, wai-cors
, wai-logger
, warp
executable crawler
hs-source-dirs: crawler, shared
main-is: Main.hs
other-modules: DB, Files, OCR, CrawlTools, SQL, Date
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, aeson
, bytestring
, directory
, filepath
, http-conduit
, mtl
, network-uri
, pretty-simple
, process >= 1.6.9.0
, scalpel
, sqlite-simple
, tagsoup
, text
, time