-
Notifications
You must be signed in to change notification settings - Fork 0
/
unification-sop.cabal
40 lines (38 loc) · 1.26 KB
/
unification-sop.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
cabal-version: 2.4
name: unification-sop
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Carlo Nucera
maintainer: [email protected]
-- copyright:
category: Generics, Unification
extra-source-files: CHANGELOG.md
library
exposed-modules: Generic.Unification.Term
, Generic.Unification.Substitution
, Generic.Unification.Unification
, Generic.Unification.Tutorial
, Generic.Unification.Hinze
other-modules: Generic.Unification.Term.Internal
-- other-extensions:
build-depends: base
, pretty-show
, generics-sop
, show-combinators
, mtl
, containers
, typerep-map
, logict
hs-source-dirs: src
default-language: Haskell2010
test-suite doctests
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: doctest-driver.hs
build-depends: base >4 && <5, doctest, doctest-discover, unification-sop
HS-Source-Dirs: test