go-yaml: direct dependency on github repo

This commit is contained in:
Christian Schwarz 2017-09-22 15:29:54 +02:00
parent eaff4fb963
commit a459f0a0f6
3 changed files with 10 additions and 4 deletions

10
Gopkg.lock generated
View File

@ -19,6 +19,12 @@
packages = ["."] packages = ["."]
revision = "c6d800382fff6dc1412f34269f71b7f83bd059ad" revision = "c6d800382fff6dc1412f34269f71b7f83bd059ad"
[[projects]]
branch = "v2"
name = "github.com/go-yaml/yaml"
packages = ["."]
revision = "eb3733d160e74a9c7e442f435eb3bea458e1d19f"
[[projects]] [[projects]]
branch = "master" branch = "master"
name = "github.com/hashicorp/hcl" name = "github.com/hashicorp/hcl"
@ -137,7 +143,7 @@
branch = "master" branch = "master"
name = "golang.org/x/sys" name = "golang.org/x/sys"
packages = ["unix"] packages = ["unix"]
revision = "2320a9c15898af1b1b24f99700d5c1e957f9d8cf" revision = "429f518978ab01db8bb6f44b66785088e7fba58b"
[[projects]] [[projects]]
branch = "master" branch = "master"
@ -154,6 +160,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "196c737e0eb39f54d4566bd78e761f874f47b7024b6d694c131d4986664cc272" inputs-digest = "bee0c80e0ddaadd7725a31b203d080be9e360fb17514e972ff2023c0b40cb004"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

View File

@ -59,4 +59,4 @@
[[constraint]] [[constraint]]
branch = "v2" branch = "v2"
name = "gopkg.in/yaml.v2" name = "github.com/go-yaml/yaml"

View File

@ -6,7 +6,7 @@ import (
"fmt" "fmt"
"github.com/mitchellh/mapstructure" "github.com/mitchellh/mapstructure"
"github.com/pkg/errors" "github.com/pkg/errors"
yaml "gopkg.in/yaml.v2" yaml "github.com/go-yaml/yaml"
"os" "os"
) )