-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDarthSheaf.cabal
More file actions
47 lines (44 loc) · 1.3 KB
/
DarthSheaf.cabal
File metadata and controls
47 lines (44 loc) · 1.3 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
cabal-version: 3.0
name: DarthSheaf
version: 0.1.0.0
synopsis: BLAS Level 1 operations in pure Haskell
description: A pedagogical implementation of BLAS Level 1 (vector-vector)
operations in pure Haskell, focusing on correctness, numerical
stability, and clarity.
license: MIT
license-file: LICENSE
author: darthcoder
maintainer: ab.ahmad@icloud.com
category: Math
build-type: Simple
extra-doc-files: CHANGELOG.md
library
exposed-modules:
DarthSheaf
DarthSheaf.BlasL1
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.14 && <5
test-suite dartsheaf-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.14 && <5,
DarthSheaf,
hspec,
QuickCheck
benchmark dartsheaf-bench
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -Wall -O2
build-depends:
base >=4.14 && <5,
DarthSheaf,
criterion