aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--go.mod2
-rw-r--r--go.sum11
-rw-r--r--tcl.go2
3 files changed, 11 insertions, 4 deletions
diff --git a/go.mod b/go.mod
index cb5f9fb..81e17c8 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,4 @@ module kesim.org/tcl
go 1.12
-require github.com/oec/goparsify v0.0.7
+require kesim.org/goparsify v0.0.0-20210507195226-afd70fad39c8
diff --git a/go.sum b/go.sum
index fc47011..d621a51 100644
--- a/go.sum
+++ b/go.sum
@@ -1,2 +1,9 @@
-github.com/oec/goparsify v0.0.7 h1:nWHAYwgNm4BA1wrQt6w+3cExCM3TuooU8Hyr9HKsXQ4=
-github.com/oec/goparsify v0.0.7/go.mod h1:GLTAtNaFRQLtV/UCSMOb444tQy32MA4SlLrDgrP83/w=
+github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
+github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/prataprc/goparsec v0.0.0-20180806094145-2600a2a4a410/go.mod h1:YbpxZqbf10o5u96/iDpcfDQmbIOTX/iNCH/yBByTfaM=
+github.com/stretchr/testify v1.1.4 h1:ToftOQTytwshuOSj6bDSolVUa3GINfJP/fg3OkkOzQQ=
+github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
+kesim.org/goparsify v0.0.0-20210507195226-afd70fad39c8 h1:TE3S2JaRHz7wOCPaF2eFC+E2ndc/w98v62lmCF1qPNc=
+kesim.org/goparsify v0.0.0-20210507195226-afd70fad39c8/go.mod h1:RowiLHo6JhONp199fSrQhV4cgMYswaAGEaHMzrOE21o=
diff --git a/tcl.go b/tcl.go
index 8839880..a2f684a 100644
--- a/tcl.go
+++ b/tcl.go
@@ -4,7 +4,7 @@ import (
"log"
"os"
- . "github.com/oec/goparsify"
+ . "kesim.org/goparsify"
)
// Tcl tokenizer parser, using combinators