mirror of
https://github.com/extism/extism.git
synced 2026-01-10 06:18:00 -05:00
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
cabal-version: 3.0
|
|
name: extism
|
|
version: 0.5.0
|
|
license: BSD-3-Clause
|
|
maintainer: oss@extism.org
|
|
author: Extism authors
|
|
bug-reports: https://github.com/extism/extism
|
|
synopsis: Extism bindings
|
|
description: Bindings to Extism, the universal plugin system
|
|
category: Plugins, WebAssembly
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
library
|
|
exposed-modules: Extism Extism.CurrentPlugin
|
|
reexported-modules: Extism.Manifest
|
|
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 >= 0.0.0 && < 0.4.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
|