-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnorn-0.1-1.rockspec
39 lines (39 loc) · 1.28 KB
/
norn-0.1-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
package = "norn"
version = "0.1-1"
source = {
url = "git+https://github.com/jspahrsummers/norn.git"
}
description = {
summary = "Embeddable blockchain library for low-latency P2P multiplayer games",
homepage = "https://github.com/jspahrsummers/norn",
license = "MIT",
maintainer = "Justin Spahr-Summers <[email protected]>"
}
dependencies = {
"lua ~> 5.2",
"date ~> 2.1.3",
"lua-cjson == 2.1.0",
"luaossl >= 20200709",
"basexx ~> 0.4",
}
build = {
type = "builtin",
modules = {
["norn.block"] = "norn/lua/block.lua",
["norn.blockchain"] = "norn/lua/blockchain.lua",
["norn.clock"] = "norn/lua/clock.lua",
["norn.consensus"] = "norn/lua/consensus.lua",
["norn.functional"] = "norn/lua/functional.lua",
["norn.hash"] = "norn/lua/hash.lua",
["norn.logging"] = "norn/lua/logging.lua",
["norn.message"] = "norn/lua/message.lua",
["norn.networker"] = "norn/lua/networker.lua",
["norn.node"] = "norn/lua/node.lua",
["norn.opcode"] = "norn/lua/opcode.lua",
["norn.privatekey"] = "norn/lua/privatekey.lua",
["norn.publickey"] = "norn/lua/publickey.lua",
["norn.timer"] = "norn/lua/timer.lua",
["norn.tohex"] = "norn/lua/tohex.lua",
["norn.wallet"] = "norn/lua/wallet.lua",
}
}