This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhslua-module-aeson.cabal
More file actions
43 lines (40 loc) · 1.59 KB
/
hslua-module-aeson.cabal
File metadata and controls
43 lines (40 loc) · 1.59 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
name: hslua-module-aeson
version: 0.1.0
synopsis: Lua wrapper around Aeson.
description: Allow to encode and decode Lua values from and to JSON.
homepage: https://github.com/hslua/hslua-module-aeson
license: MIT
license-file: LICENSE
author: Albert Krewinkel
maintainer: albert+hslua@zeitkraut.de
copyright: Albert Krewinkel <albert+hslua@zeitkraut.de>
category: Foreign
build-type: Simple
extra-source-files: CHANGELOG.md
, test/aeson-module-tests.lua
cabal-version: >=1.10
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5
source-repository head
type: git
location: https://github.com/hslua/hslua-module-aeson.git
library
build-depends: base >= 4.9 && < 5
, aeson >= 0.11 && < 1.5
, bytestring >= 0.10.2 && < 0.11
, hslua >= 1.0.3 && < 1.2
, hslua-aeson >= 1.0.0 && < 1.1
exposed-modules: Foreign.Lua.Module.Aeson
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite test-hslua-module-aeson
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: test-hslua-module-aeson.hs
hs-source-dirs: test
ghc-options: -Wall -threaded
build-depends: base
, hslua
, hslua-module-aeson
, tasty
, tasty-hunit