-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhazel.cabal
64 lines (59 loc) · 2.04 KB
/
hazel.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
name: hazel
version: 0.1.0.0
synopsis: Reasoner for the EL description logic
description:
license: GPL-3
license-file: LICENSE
author: Felix Distel, Francesco Kriegel, Maximilian Marx
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall -Werror -O2
ghc-prof-options: -auto-all -caf-all
exposed-modules: Hazel.Completion
, Hazel.Wrapper
, Hazel.Core
, Hazel.Normalize
, Hazel.Parser
, Hazel.Parser.OWL.Functional
other-modules: Hazel.Parser.Utils
, Hazel.Parser.OWL.BCP47
, Hazel.Parser.OWL.RFC3987
, Hazel.Parser.OWL.RFC5234
, Hazel.Parser.OWL.SPARQL
build-depends: base >=4.5.0 && <4.7
, containers ==0.5.*
, text ==1.1.*
, hashable ==1.2.*
, mtl ==2.1.*
, attoparsec ==0.11.*
, conduit ==1.0.*
, attoparsec-conduit ==1.0.*
executable hazel
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -rtsopts=all
ghc-prof-options: -prof -auto-all -caf-all -rtsopts=all
hs-source-dirs: cli
main-is: Main.hs
build-depends: base >=4.5.0 && <4.7
, containers ==0.5.*
, directory ==1.2.*
, hazel
Test-Suite test-hazel
default-language: Haskell2010
ghc-options: -Wall -Werror
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >=4.5.0 && <4.7
, containers ==0.5.*
, text ==1.1.*
, hazel
, hspec ==1.7.*
, hspec-discover ==0.2.*
, mtl ==2.1.*
source-repository head
type: git
location: https://github.com/hazel-el/hazel.git
branch: master