add codec.RawMessage support
All checks were successful
test / test (push) Successful in 3m19s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2024-12-23 20:42:13 +03:00
parent bfb0881b0f
commit 974847663d
4 changed files with 24 additions and 158 deletions

12
go.mod
View File

@@ -1,6 +1,8 @@
module go.unistack.org/micro-codec-msgpack/v3
go 1.19
go 1.21
toolchain go1.23.4
require (
github.com/vmihailenco/msgpack/v5 v5.4.1
@@ -9,8 +11,10 @@ require (
)
require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/stretchr/testify v1.8.3 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/stretchr/testify v1.10.0 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
google.golang.org/protobuf v1.35.2 // indirect
)