-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterm-unification.cabal
More file actions
56 lines (43 loc) · 1.33 KB
/
term-unification.cabal
File metadata and controls
56 lines (43 loc) · 1.33 KB
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
cabal-version: 3.6
name: term-unification
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
license: NONE
-- The package author(s).
author: Iain Moncrief, Christine Lin
-- An email address to which users can send suggestions, bug reports, and patches.
maintainer: moncrief@oregonstate.edu
common warnings
-- ghc-options: -Wall
library
import: warnings
exposed-modules:
Unify
Rules
Common
Control.Monad.Backtrack
Control.Monad.Yield
Control.Monad.State.LocalGlobal
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
default-extensions:
PatternSynonyms
-- Other library packages from which modules are imported.
build-depends:
base >=4.17.2.1,
transformers ^>= 0.6.1.0,
mtl,
logict ^>= 0.8.1.0,
containers,
logic
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: GHC2021