Skip to content

Commit

Permalink
uuid: use plain package instead of module
Browse files Browse the repository at this point in the history
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
  • Loading branch information
DifferentialOrange committed Jan 14, 2022
1 parent 9c9a68e commit 8ad21b2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 39 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/tarantool/go-tarantool
go 1.11

require (
github.com/google/uuid v1.3.0
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg=
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
Expand Down
11 changes: 0 additions & 11 deletions uuid/go.mod

This file was deleted.

28 changes: 0 additions & 28 deletions uuid/go.sum

This file was deleted.

0 comments on commit 8ad21b2

Please sign in to comment.