TokenManiac
TokenManiac
``` print( serde.encode("json", {"foo", nil, "bar"}) ) ``` Expected Output: > ["foo",null,"bar"] Actual Output: > ["foo"] p.s. toml encoding gives me a "unsupported rust type" error 😅
Allow an option to specify the encoding type for `serde.hash` output. This would be quite convenient, as I often find myself needing the base64-encoded result of hashes to verify file...
Hello, just today I noticed that any other option than "count" passed into `collectgarbage` throws the following error in versions v0.10.0 - v0.10.1: > collectgarbage("collect") ``` test:1: collectgarbage called with...
v0.10.1 `lune run main.luau` works normally but running the standalone binary with require does not work. \> Make the file "main.luau" with the content `require("./anotherluaumodule")` \> Build the file `lune...
Based on the issue that: ```lua ECB_256(encrypt, 0, "012345689ABCDEF") == ECB_256(encrypt, 255, "0123456789ABCDEF") ``` Buggy part (the schedule256 function): ```lua -- we skip the first element of the key bytes...