From 466ea5c1b09061aa300ea22ba72fd7c6cbf8ba96 Mon Sep 17 00:00:00 2001 From: Antonio Cheong Date: Sat, 17 Aug 2024 23:41:04 +0800 Subject: [PATCH] 0.2.2 rockspec --- tiktoken_core-0.2.1-1.rockspec | 28 ---------------------------- tiktoken_core-0.2.2-1.rockspec | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 28 deletions(-) delete mode 100644 tiktoken_core-0.2.1-1.rockspec create mode 100644 tiktoken_core-0.2.2-1.rockspec diff --git a/tiktoken_core-0.2.1-1.rockspec b/tiktoken_core-0.2.1-1.rockspec deleted file mode 100644 index 78df676..0000000 --- a/tiktoken_core-0.2.1-1.rockspec +++ /dev/null @@ -1,28 +0,0 @@ -package = "tiktoken_core" -version = "0.2.1-1" - -source = { - url = "git+https://github.com/gptlang/lua-tiktoken", - tag = "0.2.1", -} - -description = { - summary = "An experimental port of OpenAI's Tokenizer to lua", - detailed = [[ - The Lua module written in Rust that provides Tiktoken support for Lua. - ]], - homepage = "https://github.com/gptlang/lua-tiktoken", - license = "MIT" -} - -dependencies = { - "lua >= 5.1", - "luarocks-build-rust-mlua", -} - -build = { - type = "rust-mlua", - modules = { - "tiktoken_core" - }, -} diff --git a/tiktoken_core-0.2.2-1.rockspec b/tiktoken_core-0.2.2-1.rockspec new file mode 100644 index 0000000..8168437 --- /dev/null +++ b/tiktoken_core-0.2.2-1.rockspec @@ -0,0 +1,28 @@ +package = "tiktoken_core" +version = "0.2.2-1" + +source = { + url = "git+https://github.com/gptlang/lua-tiktoken", + tag = "0.2.2", +} + +description = { + summary = "An experimental port of OpenAI's Tokenizer to lua", + detailed = [[ + The Lua module written in Rust that provides Tiktoken support for Lua. + ]], + homepage = "https://github.com/gptlang/lua-tiktoken", + license = "MIT", +} + +dependencies = { + "lua >= 5.1", + "luarocks-build-rust-mlua", +} + +build = { + type = "rust-mlua", + modules = { + "tiktoken_core", + }, +}