-
Notifications
You must be signed in to change notification settings - Fork 0
/
extism.cabal
49 lines (45 loc) · 1.49 KB
/
extism.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
cabal-version: 3.0
name: extism
version: 1.3.0.0
license: BSD-3-Clause
maintainer: oss@extism.org
author: Extism authors
bug-reports: https://github.com/extism/haskell-sdk
synopsis: Extism bindings
description: Bindings to Extism, the universal plugin system
category: Plugins, WebAssembly
extra-doc-files: cabal.project README.md CHANGELOG.md
build-type: Simple
library
exposed-modules: Extism, Extism.HostFunction, Extism.Encoding
reexported-modules: Extism.Manifest, Extism.JSON
hs-source-dirs: src
other-modules: Extism.Bindings
default-language: Haskell2010
extra-libraries: extism
extra-lib-dirs: /usr/local/lib
build-depends:
base >= 4.16.1 && < 5,
bytestring >= 0.11.3 && <= 0.12,
json >= 0.10 && <= 0.11,
extism-manifest >= 1.0.0 && < 2.0.0,
uuid >= 1.3 && < 2,
binary >= 0.8.9 && < 0.9.0
test-suite extism-example
type: exitcode-stdio-1.0
main-is: Example.hs
default-language: Haskell2010
build-depends:
base,
extism,
bytestring
test-suite extism-test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends:
base,
extism,
bytestring,
HUnit >= 1.5.0 && < 2