This commit is contained in:
crusader 2018-05-14 12:42:21 +09:00
parent fba0aa26f6
commit 1092f7a7ae
3 changed files with 117 additions and 7 deletions

75
Gopkg.lock generated Normal file
View File

@ -0,0 +1,75 @@
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
branch = "master"
name = "git.loafle.net/commons/configuration-go"
packages = ["."]
revision = "6a207556cca57312cf50282ca71961664260505b"
[[projects]]
branch = "master"
name = "git.loafle.net/commons/logging-go"
packages = ["."]
revision = "2ccfffa8a5f0f3666752884a73e8b9a74394aa62"
[[projects]]
branch = "master"
name = "git.loafle.net/commons/server-go"
packages = ["client"]
revision = "528e27a4ab818e83da441ecfae5f9ded48fcdb1f"
[[projects]]
branch = "master"
name = "git.loafle.net/commons/util-go"
packages = [
"context",
"encoding/json",
"reflect",
"service"
]
revision = "db124f0b5b2ffcaf1e925f1e80ab8f3d2673de45"
[[projects]]
name = "github.com/BurntSushi/toml"
packages = ["."]
revision = "b26d9c308763d68093482582cea63d69be07a0f0"
version = "v0.3.0"
[[projects]]
name = "go.uber.org/atomic"
packages = ["."]
revision = "1ea20fb1cbb1cc08cbd0d913a96dead89aa18289"
version = "v1.3.2"
[[projects]]
name = "go.uber.org/multierr"
packages = ["."]
revision = "3c4937480c32f4c13a875a1829af76c98ca3d40a"
version = "v1.1.0"
[[projects]]
name = "go.uber.org/zap"
packages = [
".",
"buffer",
"internal/bufferpool",
"internal/color",
"internal/exit",
"zapcore"
]
revision = "eeedf312bc6c57391d84767a4cd413f02a917974"
version = "v1.8.0"
[[projects]]
name = "gopkg.in/yaml.v2"
packages = ["."]
revision = "5420a8b6744d3b0345ab293f6fcba19c978f1183"
version = "v2.2.1"
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "c437dcb9b279fd0a7fe610d8cce5eb7e88bb92350b0571ade6285479a6ef0413"
solver-name = "gps-cdcl"
solver-version = 1

42
Gopkg.toml Normal file
View File

@ -0,0 +1,42 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true
[[constraint]]
branch = "master"
name = "git.loafle.net/commons/logging-go"
[[constraint]]
branch = "master"
name = "git.loafle.net/commons/server-go"
[[constraint]]
branch = "master"
name = "git.loafle.net/commons/util-go"
[prune]
go-tests = true
unused-packages = true

View File

@ -1,7 +0,0 @@
package: git.loafle.net/commons/rpc-go
import:
- package: git.loafle.net/commons/util-go
subpackages:
- encoding/json
- reflect
- package: git.loafle.net/commons/server-go