You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghc-hslua-module-text/hslua-module-text-0.3.0.1.c...

51 lines
1.8 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

name: hslua-module-text
version: 0.3.0.1
x-revision: 1
synopsis: Lua module for text
description: UTF-8 aware subset of Lua's `string` module.
homepage: https://github.com/hslua/hslua-module-text
license: MIT
license-file: LICENSE
author: Albert Krewinkel
maintainer: albert+hslua@zeitkraut.de
copyright: © 20172021 Albert Krewinkel
category: Foreign
build-type: Simple
extra-source-files: ChangeLog.md
test/test-text.lua
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.3
, GHC == 8.10.1
source-repository head
type: git
location: https://github.com/hslua/hslua-module-text.git
library
exposed-modules: Foreign.Lua.Module.Text
build-depends: base >= 4.8 && < 5
, bytestring >= 0.10.2 && < 0.12
, hslua >= 1.2 && < 1.4
, text >= 1 && < 1.3
hs-source-dirs: src
default-language: Haskell2010
other-extensions: OverloadedStrings
test-suite test-hslua
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: test-hslua-module-text.hs
hs-source-dirs: test
ghc-options: -Wall -threaded
build-depends: base
, hslua
, hslua-module-text
, tasty
, tasty-hunit
, tasty-lua >= 0.2 && < 0.3
, text