update package names for toolbox
This commit is contained in:
parent
5692b739b2
commit
ff0b55d861
20
Gopkg.lock
generated
20
Gopkg.lock
generated
|
@ -57,7 +57,7 @@
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "github.com/mitchellh/mapstructure"
|
name = "github.com/mitchellh/mapstructure"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "a4e142e9c047c904fa2f1e144d9a84e6133024bc"
|
revision = "00c29f56e2386353d58c599509e8dc3801b0d716"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/pelletier/go-toml"
|
name = "github.com/pelletier/go-toml"
|
||||||
|
@ -102,16 +102,15 @@
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "golang.org/x/net"
|
name = "golang.org/x/net"
|
||||||
packages = ["context"]
|
packages = ["context"]
|
||||||
revision = "f5dfe339be1d06f81b22525fe34671ee7d2c8904"
|
revision = "803fdb99c0f72e493c28ef2099d250a9c989d8ff"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "golang.org/x/sys"
|
name = "golang.org/x/sys"
|
||||||
packages = ["unix"]
|
packages = ["unix"]
|
||||||
revision = "37707fdb30a5b38865cfb95e5aab41707daec7fd"
|
revision = "8c0ece68c28377f4c326d85b94f8df0dace46f80"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
|
||||||
name = "golang.org/x/text"
|
name = "golang.org/x/text"
|
||||||
packages = [
|
packages = [
|
||||||
"internal/gen",
|
"internal/gen",
|
||||||
|
@ -121,28 +120,29 @@
|
||||||
"unicode/cldr",
|
"unicode/cldr",
|
||||||
"unicode/norm"
|
"unicode/norm"
|
||||||
]
|
]
|
||||||
revision = "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1"
|
revision = "f21a4dfb5e38f5895301dc265a8def02365cc3d0"
|
||||||
|
version = "v0.3.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "v2"
|
|
||||||
name = "gopkg.in/yaml.v2"
|
name = "gopkg.in/yaml.v2"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "d670f9405373e636a5a2765eea47fac0c9bc91a4"
|
revision = "7f97868eec74b32b0982dd158a51a446d1da7eb5"
|
||||||
|
version = "v2.1.1"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "sour.is/go"
|
name = "sour.is/x/toolbox"
|
||||||
packages = [
|
packages = [
|
||||||
"httpsrv",
|
"httpsrv",
|
||||||
"ident",
|
"ident",
|
||||||
"log",
|
"log",
|
||||||
"uuid"
|
"uuid"
|
||||||
]
|
]
|
||||||
revision = "e7f65531b0f31da53aeaa829bd7f09a550be34c5"
|
revision = "41be9e5a06267b805ab1fa4ba928232865798133"
|
||||||
|
|
||||||
[solve-meta]
|
[solve-meta]
|
||||||
analyzer-name = "dep"
|
analyzer-name = "dep"
|
||||||
analyzer-version = 1
|
analyzer-version = 1
|
||||||
inputs-digest = "bd0d8e43c185b42f71af545b4657c7388a7f17a88198ca85b8df7aad52785b4a"
|
inputs-digest = "f0136e5899d85670e4bb91c85db638b8d50d74cac1d00e96c714c7ec61513d5f"
|
||||||
solver-name = "gps-cdcl"
|
solver-name = "gps-cdcl"
|
||||||
solver-version = 1
|
solver-version = 1
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "sour.is/go"
|
name = "sour.is/x/toolbox"
|
||||||
|
|
||||||
[prune]
|
[prune]
|
||||||
go-tests = true
|
go-tests = true
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
|
|
||||||
"github.com/docopt/docopt.go"
|
"github.com/docopt/docopt.go"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
"sour.is/go/httpsrv"
|
"sour.is/x/toolbox/httpsrv"
|
||||||
"sour.is/go/log"
|
"sour.is/x/toolbox/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
2
main.go
2
main.go
|
@ -27,7 +27,7 @@
|
||||||
package main // import "sour.is/x/paste"
|
package main // import "sour.is/x/paste"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sour.is/go/httpsrv"
|
"sour.is/x/toolbox/httpsrv"
|
||||||
_ "sour.is/x/paste/routes"
|
_ "sour.is/x/paste/routes"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,8 @@ import (
|
||||||
|
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
"sour.is/go/httpsrv"
|
"sour.is/x/toolbox/httpsrv"
|
||||||
"sour.is/go/log"
|
"sour.is/x/toolbox/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
var store string
|
var store string
|
||||||
|
|
Loading…
Reference in New Issue
Block a user