From 1245707afa5237b0d5d2fe8abb046d1a3d7d1699 Mon Sep 17 00:00:00 2001 From: Ilya Rezvov Date: Thu, 21 Jun 2018 08:32:20 -0700 Subject: [PATCH] fix cabal file --- wasm.cabal | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/wasm.cabal b/wasm.cabal index 75b38c3..4ae5662 100644 --- a/wasm.cabal +++ b/wasm.cabal @@ -1,8 +1,27 @@ name: wasm version: 1.0.0 author: Ilya Rezvov -maintainer: rezvov.ilya@gmail.com +maintainer: Ilya Rezvov license: MIT +license-file: LICENSE +category: Compilers/Interpreters +homepage: https://github.com/SPY/haskell-wasm/ +bug-reports: https://github.com/SPY/haskell-wasm/issues +synopsis: WebAssembly Language Toolkit and Interpreter +description: This package contains fully spec-compatible tooling for WebAssembly. + Features include: + . + * WebAssembly Text Representation Parser + . + * WebAssembly Binary Representation encoder and decoder + . + * Spec-compatible Module validator (checked with Spec Core Test Suite) + . + * Spec-compatible Interpreter (checked with Spec Core Test Suite) + . + * Extended scipting grammar parser and executor + . + * WebAssembly Module building eDSL build-type: Simple cabal-version: >= 1.10 @@ -50,10 +69,11 @@ executable wasm hs-source-dirs: exec build-depends: base >=4.6 && <5.0 - , wasm >= 1.0.0 + , wasm , optparse-applicative >= 0.14 , bytestring >=0.10 && <0.11 , base64-bytestring >= 1.0 + default-language: Haskell2010 test-suite test type: exitcode-stdio-1.0 @@ -69,7 +89,7 @@ test-suite test , tasty >=0.7 , tasty-hunit >=0.4.1 && <0.10 , text >=1.1 && <1.3 - , wasm >= 1.0 + , wasm build-tools: alex >=3.1.3 , happy >=1.9.4