-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdp-tree.cabal
50 lines (35 loc) · 1.26 KB
/
sdp-tree.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
name: sdp-tree
version: 0.2
category: Data Structures
synopsis: SDP Tree extension.
description: SDP Tree class and basic instances.
author: Andrey Mulik
maintainer: work.a.mulik@gmail.com
bug-reports: https://github.com/andreymulik/sdp-trees/issues
copyright: 2020 Andrey Mulik
license-file: LICENSE
license: BSD3
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/andreymulik/sdp-trees
--- _ _____ ______ ______ ___ ______ __ __ ---
--- | | |_ _|| ___ \| ___ \ / _ \ | ___ \\ \ / / ---
--- | | | | | |_/ /| |_/ // /_\ \| |_/ / \ V / ---
--- | | | | | ___ \| / | _ || / \ / ---
--- | |____ _| |_ | |_/ /| |\ \ | | | || |\ \ | | ---
--- \_____/ \___/ \____/ \_| \_|\_| |_/\_| \_| \_/ ---
Library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.12 && < 5,
sdp >= 0.2 && < 0.3
ghc-options: -O2 -Wall -Wno-orphans
exposed-modules:
-- Core
SDP.Node
SDP.Tree
-- Template
SDP.Templates.GRose