File: binaryheap-0.4-1.rockspec

package info (click to toggle)
lua-binaryheap 0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 160 kB
  • sloc: makefile: 6
file content (26 lines) | stat: -rw-r--r-- 678 bytes parent folder | download
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
package = "binaryheap"
version = "0.4-1"

source = {
   url = "https://github.com/Tieske/binaryheap.lua/archive/version_0v4.tar.gz",
   dir = "binaryheap.lua-version_0v4"
}

description = {
   summary = "Binary heap implementation in pure Lua",
   detailed = [[
      Binary heaps are an efficient sorting algorithm. This module
      implements a plain binary heap (without reverse lookup) and a
      'unique' binary heap (with unique payloads and reverse lookup).
   ]],
   license = "MIT/X11",
   homepage = "https://github.com/Tieske/binaryheap.lua"
}
dependencies = {
   "lua >= 5.1",
}

build = {
   type = "builtin",
   modules = { binaryheap = "src/binaryheap.lua" }
}