-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It has been long overdue. Let's serialize the world! Some important changes since 1.1: - Can serialize metatables now (optionally disabled with `bitser.includeMetatables`) - Added an extension API - Removed support for cdata, which was just too buggy to hold on. More robust support would probably need to depend on ffi-reflect, which is best done by an extension library
- Loading branch information
Showing
4 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package = "bitser" | ||
version = "1.2-0" | ||
source = { | ||
url = "https://github.com/gvx/bitser.git", | ||
tag = "v1.2" | ||
} | ||
description = { | ||
summary = "Serializes and deserializes Lua values with LuaJIT.", | ||
detailed = [[ | ||
Serializes and deserializes Lua values with LuaJIT. | ||
It is blazingly fast, produces compact binary output, and is suitable | ||
for deserializing untrusted data. | ||
]], | ||
homepage = "https://github.com/gvx/bitser", | ||
-- issues_url = "https://github.com/gvx/bitser/issues", | ||
license = "ISC" | ||
} | ||
dependencies = { | ||
"luajit <= 2.1" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { bitser = "bitser.lua" } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters