msgpack icon indicating copy to clipboard operation
msgpack copied to clipboard

Results 2 msgpack issues
Sort by recently updated
recently updated
newest added

msgpack is missing a manifest, please consider adding a `v.mod` file with the modules metadata ``` $ v install msgpack Scanning `msgpack`... warning: `msgpack` is missing a manifest file. details:...

Even the most simple example: ```v pub struct Map { used_ids int } data := '{"used_ids": 1}' json_data := json.decode(Map, data)! println(json_data) // println("json: ${json_data}") encoded := msgpack.encode[Map](json_data) println("encoded: ${encoded}")...

bug