-
Notifications
You must be signed in to change notification settings - Fork 0
/
marshal-contt.cabal
30 lines (29 loc) · 1.27 KB
/
marshal-contt.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
name: marshal-contt
version: 0.3.0.0
synopsis: A ContT-based wrapper for Haskell-to-C marshalling functions.
description: See <https://github.com/typedrat/marshal-contt/blob/master/README.md>.
homepage: https://github.com/typedrat/marshal-contt
bug-reports: https://github.com/typedrat/marshal-contt/issues
license: MPL-2.0
license-file: LICENSE
cabal-version: 1.24
build-type: Simple
author: Alexis Williams
maintainer: [email protected]
copyright: (c) 2019-2022 Alexis Williams
category: Foreign
extra-source-files: CHANGELOG.md
library
exposed-modules: Foreign.Marshal.ContT
, Foreign.Marshal.Codensity
build-depends: base >= 4.9 && < 5
, mtl >= 2.2 && < 2.3
, bytestring >= 0.10.10.0 && < 0.12
, kan-extensions >= 5.2 && < 5.3
, lens >= 4.16 && < 5.2
hs-source-dirs: src
default-language: Haskell2010
default-extensions: FlexibleInstances
, RankNTypes
, ScopedTypeVariables
, TypeSynonymInstances