forked from haskell-github-trust/vector-th-unbox
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvector-th-unbox.cabal
62 lines (56 loc) · 1.51 KB
/
vector-th-unbox.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
name: vector-th-unbox
version: 0.2.2
synopsis: Deriver for Data.Vector.Unboxed using Template Haskell
description:
A Template Haskell deriver for unboxed vectors, given a pair of coercion
functions to and from some existing type with an Unbox instance.
.
Refer to "Data.Vector.Unboxed.Deriving" for documentation and examples.
stability: experimental
homepage: https://github.com/tsurucapital/vector-th-unbox
license: BSD3
license-file: LICENSE
copyright: (c) 2012-2015 Liyang HU
author: Liyang HU <[email protected]>
maintainer: Fumiaki Kinoshita <[email protected]>
category: Data
build-type: Simple
cabal-version: >= 1.10
tested-with:
GHC == 9.8,
GHC == 9.6,
GHC == 9.4,
GHC == 9.2,
GHC == 9.0,
GHC == 8.10,
GHC == 8.8,
GHC == 8.6,
GHC == 8.4,
GHC == 8.2,
GHC == 8.0
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: http://github.com/tsurucapital/vector-th-unbox
library
default-language: Haskell2010
exposed-modules:
Data.Vector.Unboxed.Deriving
build-depends:
base >= 4.9 && < 4.22,
template-haskell >= 2.5 && <2.24,
vector >= 0.7.1 && <0.14
test-suite sanity
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: sanity.hs
build-depends:
base,
data-default,
vector,
vector-th-unbox
ghc-options: -Wall
-- vim: et sw=4 ts=4 sts=4: