Skip to content

Commit 56cb3ef

Browse files
uuid: use plain package instead of module
Using separate module instead of plain package introduced several issues related to dependencies inside the repository (see #134). At the same time, same functionality could be provided with package. The only drawback is that google/uuid will be included in main package dependency even if user decide to use custom UUID parser or ignore UUID completely. Closes #134
1 parent 9c9a68e commit 56cb3ef

File tree

4 files changed

+3
-39
lines changed

4 files changed

+3
-39
lines changed

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/tarantool/go-tarantool
33
go 1.11
44

55
require (
6+
github.com/google/uuid v1.3.0
67
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
78
google.golang.org/appengine v1.6.7 // indirect
89
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg=
22
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
3+
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
4+
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
35
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
46
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
57
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=

uuid/go.mod

-11
This file was deleted.

uuid/go.sum

-28
This file was deleted.

0 commit comments

Comments
 (0)