-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprimitive-foreign.cabal
More file actions
67 lines (64 loc) · 1.36 KB
/
primitive-foreign.cabal
File metadata and controls
67 lines (64 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
cabal-version: 2.2
name:
primitive-foreign
version:
0.1.1
synopsis:
using the `Prim` interface for the FFI
description:
This library provides an alternative to the `Storable` interface,
using the `Prim` typeclass. The goal is to make it possible to avoid
the duplicated code between `Storable` and `Prim` APIs when one is
working mostly with the `primitive` or `contiguous` APIs.
homepage:
https://github.com/haskell-primitive/primitive-ffi
bug-reports:
https://github.com/haskell-primitive/primitive-ffi/issues
license:
BSD-3-Clause
license-file:
LICENSE
author:
chessai
maintainer:
chessai <chessai1996@gmail.com>
copyright:
© 2019 chessai
category:
Data
build-type:
Simple
extra-doc-files:
README.md
, CHANGELOG.md
tested-with:
GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5
library
hs-source-dirs:
src
exposed-modules:
Data.Primitive.Foreign
build-depends:
, base >= 4.10.1 && < 4.14
, primitive >= 0.6.4 && < 0.8
ghc-options:
-Wall
-O2
default-language:
Haskell2010
test-suite props
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends:
, base
, QuickCheck
, primitive
, primitive-foreign
default-language: Haskell2010
ghc-options: -O2 -Wall
source-repository head
type:
git
location:
https://github.com/haskell-primitive/primitive-foreign.git