rockspec_format = "3.0"
package = "howl"
version = "1.0-1"
source = {
  url = "git+https://codeberg.org/waxlab/howl",
  branch = 'v1.0'
}

description = {
  homepage = "https://codeberg.org/waxlab/howl/readme.md",
  license = "MIT"
}

build = {
  type = "builtin",
  modules = {
    ['howl.parse.md' ]    = 'lib/parse/md.lua',
    ['howl.parse.lua']    = 'lib/parse/lua.lua',
    ['howl.format.wiki' ] = 'lib/format/wiki.lua',
    ['howl.format.vim']   = 'lib/format/vim.lua',
  },
  install = {
    bin = {
      howl = 'bin/howl.lua'
    }
  }
}

dependencies = {
  "lua >= 5.2, < 5.5",
  "wax"
}
