-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathff-lua-scm-1.rockspec
56 lines (54 loc) · 1.92 KB
/
ff-lua-scm-1.rockspec
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
rockspec_format = "3.0"
package = "ff-lua"
version = "scm-1"
source = {
url = "git+https://github.com/felipeguilhermefs/ff-lua",
}
description = {
homepage = "https://github.com/felipeguilhermefs/ff-lua",
license = "MIT",
summary = "Personal package with useful code for playful coding",
detailed = [[
Created this package for personal usage and learning of Lua.
This is intended for mostly avoid reimplementing Data Structures and
Algorithms.
Please don't use it for anything serious... (I don't).
]],
maintainer = "Felipe Flores <felipeguilhermefs@gmail.com>",
}
dependencies = {
"lua >= 5.1",
}
test_dependencies = {
"luaunit >= 3.4",
}
build = {
type = "builtin",
modules = {
["ff.aoc.matrix"] = "src/aoc/matrix.lua",
["ff.cache.lru"] = "src/cache/lru.lua",
["ff.collections.array"] = "src/collections/array.lua",
["ff.collections.binarytree"] = "src/collections/binarytree.lua",
["ff.collections.hashmap"] = "src/collections/hashmap.lua",
["ff.collections.heap"] = "src/collections/heap.lua",
["ff.collections.linkedlist"] = "src/collections/linkedlist.lua",
["ff.collections.queue"] = "src/collections/queue.lua",
["ff.collections.stack"] = "src/collections/stack.lua",
["ff.collections.set"] = "src/collections/set.lua",
["ff.empty"] = "src/func/empty.lua",
["ff.func.comparator"] = "src/func/comparator.lua",
["ff.factorial"] = "src/math/factorial.lua",
["ff.fibonacci"] = "src/math/fibonacci.lua",
["ff.head"] = "src/func/head.lua",
["ff.max"] = "src/math/max.lua",
["ff.memoize"] = "src/func/memoize.lua",
["ff.min"] = "src/math/min.lua",
["ff.search.binarysearch"] = "src/search/binarysearch.lua",
["ff.search.quickselect"] = "src/search/quickselect.lua",
["ff.sort.bucketsort"] = "src/sort/bucketsort.lua",
["ff.sort.quicksort"] = "src/sort/quicksort.lua",
["ff.spy"] = "src/test/spy.lua",
["ff.tail"] = "src/func/tail.lua",
["ff.trunc"] = "src/math/trunc.lua",
},
}