-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg2any.cabal
86 lines (84 loc) · 2.42 KB
/
org2any.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
cabal-version: >=1.10
name: org2any
version: 0.1.1.0
homepage: https://github.com/serhiip/org2any#readme
bug-reports: https://github.com/serhiip/org2any/issues
author: Serhii Pererva
maintainer: [email protected]
copyright: Copyright (c) 2018 Serhii Pererva
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files: ChangeLog.md, README.md
library
exposed-modules:
Data.OrgMode.Sync.AppleScript
Data.OrgMode.Sync.AppleScript.Internal
Data.OrgMode.Sync.AppleScript.Types
Data.OrgMode.Sync.Command
Data.OrgMode.Sync.Executor
Data.OrgMode.Sync.Logging
Data.OrgMode.Sync.Types
Data.OrgMode.Sync.ResultT
hs-source-dirs:
src
other-modules:
Data.OrgMode.Sync.OrgMode.Parsing
default-extensions: NoImplicitPrelude
ghc-options: -Wall
build-depends:
aeson >=1.5.2.0 && <1.6
, attoparsec ==0.13.2.4
, base >=4.7 && <5
, bytestring
, containers ==0.6.0.1
, directory ==1.3.6.0
, fast-logger ==2.4.17
, filepath ==1.4.2.1
, free ==5.1.3
, mtl ==2.2.2
, random ==1.1
, text >=1.2.0.0 && <1.3.0.0
, time ==1.9.3
, typed-process ==0.2.6.0
, universum ==1.5.0
, unix ==2.7.2.2
, unordered-containers ==0.2.10.0
, uuid ==1.3.13
, org-mode ==2.0.0
default-language: Haskell2010
executable org2any
main-is: Main.hs
other-modules: Args
default-extensions: NoImplicitPrelude
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base >=4.7 && <5
, filepath ==1.4.2.1
, optparse-applicative ==0.15.1.0
, org2any
, typed-process ==0.2.6.0
, universum ==1.5.0
, unix ==2.7.2.2
, directory ==1.3.6.0
, fsnotify ==0.3.0.1
test-suite org2any-main-testsuite
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: AppleScriptSpec, CommandSpec, E2ESpec
hs-source-dirs: test
default-extensions: NoImplicitPrelude
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
QuickCheck ==2.13.2
, base >=4.7 && <5
, free ==5.1.3
, hspec ==2.7.1
, org2any
, universum ==1.5.0
, text >=1.2.0.0 && <1.3.0.0
, mtl ==2.2.2
, fast-logger ==2.4.17
default-language: Haskell2010