-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsamsort.cabal
66 lines (55 loc) · 1.42 KB
/
samsort.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
65
66
cabal-version: 3.0
name: samsort
version: 0.1.0.0
synopsis: A stable adaptive mergesort implementation
description: A stable adaptive mergesort implementation.
homepage: https://github.com/meooow25/samsort
bug-reports: https://github.com/meooow25/samsort/issues
license: BSD-3-Clause
license-file: LICENSE
author: Soumik Sarkar
maintainer: [email protected]
copyright: (c) 2024 Soumik Sarkar
category: Data
build-type: Simple
extra-doc-files:
CHANGELOG.md
HOWTO.md
README.md
tested-with:
GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.5
, GHC == 9.8.2
, GHC == 9.10.1
source-repository head
type: git
location: https://github.com/meooow25/samsort.git
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules:
Data.SamSort
build-depends:
base >= 4.11 && < 5
hs-source-dirs: src
default-language: Haskell2010
test-suite samsort-test
import: warnings
main-is: Main.hs
build-depends:
base
, samsort
, primitive
, QuickCheck
, tasty
, tasty-quickcheck
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test