From b99abcf81798f21a713077697245d3844ae26373 Mon Sep 17 00:00:00 2001 From: adranwit Date: Mon, 6 Nov 2023 10:00:38 -0800 Subject: [PATCH] integrated with tagly format --- go.mod | 2 +- go.sum | 4 ++-- marshaller_test.go | 2 +- tag.go | 2 +- tag_test.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index e03f2cb..b87adcd 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/stretchr/testify v1.8.4 github.com/viant/afs v1.25.0 github.com/viant/parsly v0.3.0 - github.com/viant/structology v0.5.0 + github.com/viant/tagly v0.1.0 github.com/viant/xreflect v0.3.1 github.com/viant/xunsafe v0.9.0 github.com/xuri/excelize/v2 v2.8.0 diff --git a/go.sum b/go.sum index 7bf6833..5468bdf 100644 --- a/go.sum +++ b/go.sum @@ -40,8 +40,8 @@ github.com/viant/assertly v0.9.1-0.20220620174148-bab013f93a60 h1:VFJvCOHKXv4IqX github.com/viant/assertly v0.9.1-0.20220620174148-bab013f93a60/go.mod h1:aGifi++jvCrUaklKEKT0BU95igDNaqkvz+49uaYMPRU= github.com/viant/parsly v0.3.0 h1:UR4/ml87j4StdEa+CeSicKlW+pXMMFx0J+U95YcfE0o= github.com/viant/parsly v0.3.0/go.mod h1:4PKQzioRT9R99ceIhZ6tCD3tp0H0n2dEoIOaLulVvrg= -github.com/viant/structology v0.5.0 h1:BTmGK078To0Q040d0/ESjn5UOFebgDELMVe+Qt9kGAI= -github.com/viant/structology v0.5.0/go.mod h1:FuV201UpB3efpVlm5YVERK6vEDT7L8u+xbrei/MeHe8= +github.com/viant/tagly v0.1.0 h1:ely64jH/kCMsZXJTLy4K7ACo9et6vPed86joYc1LswY= +github.com/viant/tagly v0.1.0/go.mod h1:vV8QgJkhug+X+qyKds8av0fhjD+4u7IhNtowL1KGQ5A= github.com/viant/toolbox v0.34.6-0.20221112031702-3e7cdde7f888 h1:iQ9ehV+Qev9s/L4eXFFaw3zvZVid+xTT5fW3G3ldEdk= github.com/viant/toolbox v0.34.6-0.20221112031702-3e7cdde7f888/go.mod h1:OxMCG57V0PXuIP2HNQrtJf2CjqdmbrOx5EkMILuUhzM= github.com/viant/xreflect v0.3.1 h1:Avqq1wXJFlXyCmS9C8TyxRNWUIxApk0S0WGdAFt4Hv4= diff --git a/marshaller_test.go b/marshaller_test.go index 00a17b7..ab60f28 100644 --- a/marshaller_test.go +++ b/marshaller_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/viant/afs" "github.com/viant/afs/file" - "github.com/viant/structology/format" + "github.com/viant/tagly/format" "os" "path" "testing" diff --git a/tag.go b/tag.go index 9f65a61..de3b492 100644 --- a/tag.go +++ b/tag.go @@ -3,7 +3,7 @@ package xlsy import ( "fmt" "github.com/viant/parsly" - "github.com/viant/structology/format" + "github.com/viant/tagly/format" "reflect" "strconv" "strings" diff --git a/tag_test.go b/tag_test.go index b228f81..6bdc76c 100644 --- a/tag_test.go +++ b/tag_test.go @@ -2,7 +2,7 @@ package xlsy import ( "github.com/stretchr/testify/assert" - "github.com/viant/structology/format" + "github.com/viant/tagly/format" "reflect" "testing" )