@@ -5,27 +5,27 @@ The dependencies differ slightly based on the environment you use, and the requi
55* [ ** luasocket** ] ( https://luarocks.org/modules/luasocket/luasocket ) to establish TCP connections to the MQTT broker.
66 This is a listed dependency in the luamqtt rockspec, so it will automatically be installed if you use LuaRocks to
77 install luamqtt. To install it manually:
8- luarocks install luasocket
8+ luarocks install luasocket
99
1010* [ ** copas** ] ( https://github.com/keplerproject/copas ) module for asynchoneous IO. Copas is an advanced co-routine
1111 scheduler with far more features than the included ` ioloop ` . For anything more than a few devices, or for devices which
1212 require network IO beyond mqtt alone, Copas is the better alternative. Copas is also pure-Lua, but has parallel network
1313 IO (as opposed to sequential network IO in ` ioloop ` ), and has features like; threads, timers, locks, semaphores, and
1414 non-blocking clients for http(s), (s)ftp, and smtp.
15- luarocks install copas
15+ luarocks install copas
1616
1717* [ ** luasec** ] ( https://github.com/brunoos/luasec ) module for SSL/TLS based connections. This is optional and may be
1818 skipped if you don't need secure network connections (e.g. broker is located in your local network). It's not listed
1919 in package dependencies, please install it manually like this:
20- luarocks install luasec
20+ luarocks install luasec
2121
2222* [ ** LuaBitOp** ] ( http://bitop.luajit.org/ ) library to perform bitwise operations, which is required only on
2323 Lua 5.1. It's not listed in package dependencies, please install it manually like this:
24- luarocks install luabitop
24+ luarocks install luabitop
2525
2626* [ ** LuaLogging** ] ( https://github.com/lunarmodules/lualogging/ ) to enable logging by the MQTT client. This is optional
2727 but highly recommended for long running clients. This is a great debugging aid when developing your clients. Also when
2828 using OpenResty as your runtime, you'll definitely want to use this, see
2929 [ openresty.lua] ( https://xhaskx.github.io/luamqtt/examples/openresty.lua.html ) for an example.
3030 It's not listed in package dependencies, please install it manually like this:
31- luarocks install lualogging
31+ luarocks install lualogging
0 commit comments