-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpropeller.cabal
48 lines (45 loc) · 1.23 KB
/
propeller.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
cabal-version: 3.0
name: propeller
version: 0.4.0.0
synopsis: A Propagator Library
description: Please see the README on GitHub at <https://github.com/typedbyte/propeller#readme>
category: Data
homepage: https://github.com/typedbyte/propeller#readme
bug-reports: https://github.com/typedbyte/propeller/issues
author: Michael Szvetits
maintainer: typedbyte@qualified.name
copyright: 2024 Michael Szvetits
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-doc-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/typedbyte/propeller
library
exposed-modules:
Data.Propagator
Data.Propagator.Hetero
Data.Propagator.ST
other-modules:
Data.Propagator.Change
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >= 4.7 && < 5
, containers >= 0.5.6.2 && < 0.8
default-language: GHC2021
test-suite unification
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test/Unification
ghc-options: -Wall
build-depends:
base >= 4.7 && < 5
, containers >= 0.5.6.2 && < 0.8
, propeller
default-language: GHC2021