Merge pull request #47 from lbryio/lbryschema_update

updated lbryschema dependencies.
This commit is contained in:
Mark 2018-11-09 19:08:49 -05:00 committed by GitHub
commit 7c3d1d062a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 14 deletions

30
Gopkg.lock generated
View file

@ -80,10 +80,12 @@
digest = "1:f958a1c137db276e52f0b50efee41a1a389dcdded59a69711f3e872757dab34b" digest = "1:f958a1c137db276e52f0b50efee41a1a389dcdded59a69711f3e872757dab34b"
name = "github.com/golang/protobuf" name = "github.com/golang/protobuf"
packages = [ packages = [
"jsonpb",
"proto", "proto",
"ptypes", "ptypes",
"ptypes/any", "ptypes/any",
"ptypes/duration", "ptypes/duration",
"ptypes/struct",
"ptypes/timestamp", "ptypes/timestamp",
] ]
pruneopts = "" pruneopts = ""
@ -106,14 +108,6 @@
revision = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" revision = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75"
version = "v1.0" version = "v1.0"
[[projects]]
branch = "master"
digest = "1:d261f80387a38eeddc1d819ee9ee56d37ca10fc02e6e09ff400fb0ce146e13dc"
name = "github.com/lbryio/lbryschema.go"
packages = ["pb"]
pruneopts = ""
revision = "185433f2fd0c732547654749b98b37e56223dd22"
[[projects]] [[projects]]
digest = "1:5e30b8342813a6a85a647f9277e34ffcd5872dc57ab590dd9b251b145b6ec88f" digest = "1:5e30b8342813a6a85a647f9277e34ffcd5872dc57ab590dd9b251b145b6ec88f"
name = "github.com/lbryio/ozzo-validation" name = "github.com/lbryio/ozzo-validation"
@ -122,6 +116,14 @@
revision = "d1008ad1fd04ceb5faedaf34881df0c504382706" revision = "d1008ad1fd04ceb5faedaf34881df0c504382706"
version = "v3.1" version = "v3.1"
[[projects]]
branch = "master"
digest = "1:349bf8c6b66272abd25af9538be35071991811b6ba3e5c849515c0bfcf3f2bd0"
name = "github.com/lbryio/types"
packages = ["go"]
pruneopts = ""
revision = "594241d24e0025d769d2cb58168536b6963d51cf"
[[projects]] [[projects]]
branch = "master" branch = "master"
digest = "1:eb9117392ee8e7aa44f78e0db603f70b1050ee0ebda4bd40040befb5b218c546" digest = "1:eb9117392ee8e7aa44f78e0db603f70b1050ee0ebda4bd40040befb5b218c546"
@ -138,6 +140,14 @@
revision = "8ab4d0b364ef1e9af5d102531da20d5ec902b6c4" revision = "8ab4d0b364ef1e9af5d102531da20d5ec902b6c4"
version = "v0.2.0" version = "v0.2.0"
[[projects]]
digest = "1:3962f553b77bf6c03fc07cd687a22dd3b00fe11aa14d31194f5505f5bb65cdc8"
name = "github.com/sergi/go-diff"
packages = ["diffmatchpatch"]
pruneopts = ""
revision = "1744e2970ca51c86172c8190fadad617561ed6e7"
version = "v1.0.0"
[[projects]] [[projects]]
branch = "master" branch = "master"
digest = "1:67b7dcb3b7e67cb6f96fb38fe7358bc1210453189da210e40cf357a92d57c1c1" digest = "1:67b7dcb3b7e67cb6f96fb38fe7358bc1210453189da210e40cf357a92d57c1c1"
@ -319,11 +329,13 @@
"github.com/davecgh/go-spew/spew", "github.com/davecgh/go-spew/spew",
"github.com/go-errors/errors", "github.com/go-errors/errors",
"github.com/go-ini/ini", "github.com/go-ini/ini",
"github.com/golang/protobuf/jsonpb",
"github.com/golang/protobuf/proto", "github.com/golang/protobuf/proto",
"github.com/lbryio/lbryschema.go/pb",
"github.com/lbryio/ozzo-validation", "github.com/lbryio/ozzo-validation",
"github.com/lbryio/types/go",
"github.com/mitchellh/mapstructure", "github.com/mitchellh/mapstructure",
"github.com/nlopes/slack", "github.com/nlopes/slack",
"github.com/sergi/go-diff/diffmatchpatch",
"github.com/shopspring/decimal", "github.com/shopspring/decimal",
"github.com/sirupsen/logrus", "github.com/sirupsen/logrus",
"github.com/spf13/cast", "github.com/spf13/cast",

View file

@ -6,10 +6,6 @@
name = "github.com/go-errors/errors" name = "github.com/go-errors/errors"
version = "1.0.0" version = "1.0.0"
[[constraint]]
branch = "master"
name = "github.com/lbryio/lbryschema.go"
[[constraint]] [[constraint]]
branch = "master" branch = "master"
name = "github.com/mitchellh/mapstructure" name = "github.com/mitchellh/mapstructure"

View file

@ -5,7 +5,7 @@ import (
"reflect" "reflect"
"github.com/lbryio/lbry.go/errors" "github.com/lbryio/lbry.go/errors"
lbryschema "github.com/lbryio/lbryschema.go/pb" lbryschema "github.com/lbryio/types/go"
"github.com/shopspring/decimal" "github.com/shopspring/decimal"
) )