Merge pull request #257 from dennwc/deps

List dependencies for Dep and Go modules
This commit is contained in:
Gunnsteinn Hall 2018-11-28 23:55:46 +00:00 committed by GitHub
commit c3e3b326e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 53 additions and 0 deletions

29
Gopkg.lock generated Normal file
View File

@ -0,0 +1,29 @@
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
name = "github.com/boombuler/barcode"
packages = [
".",
"qr",
"utils"
]
revision = "3cfea5ab600ae37946be2b763b8ec2c1cf2d272d"
version = "v1.0.0"
[[projects]]
branch = "master"
name = "golang.org/x/image"
packages = [
"draw",
"math/f64",
"tiff/lzw"
]
revision = "cd38e8056d9b27bb2f265effa37fb0ea6b8a7f0f"
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "2dcb31447fae810daeea813d2c0cdaa9bce2122d0e556718741fcef5a7506eed"
solver-name = "gps-cdcl"
solver-version = 1

14
Gopkg.toml Normal file
View File

@ -0,0 +1,14 @@
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
[[constraint]]
name = "github.com/boombuler/barcode"
version = "1.0.0"
[[constraint]]
branch = "master"
name = "golang.org/x/image"
[prune]
go-tests = true
unused-packages = true

6
go.mod Normal file
View File

@ -0,0 +1,6 @@
module github.com/unidoc/unidoc
require (
github.com/boombuler/barcode v1.0.0
golang.org/x/image v0.0.0-20181116024801-cd38e8056d9b
)

4
go.sum Normal file
View File

@ -0,0 +1,4 @@
github.com/boombuler/barcode v1.0.0 h1:s1TvRnXwL2xJRaccrdcBQMZxq6X7DvsMogtmJeHDdrc=
github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8=
golang.org/x/image v0.0.0-20181116024801-cd38e8056d9b h1:VHyIDlv3XkfCa5/a81uzaoDkHH4rr81Z62g+xlnO8uM=
golang.org/x/image v0.0.0-20181116024801-cd38e8056d9b/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs=