Skip to content

Commit

Permalink
Merge pull request #25 from go-spectest/fix-broken-cmd
Browse files Browse the repository at this point in the history
go mod tidy
  • Loading branch information
nao1215 committed Oct 20, 2023
2 parents 34ecc16 + d126946 commit 45b5d4c
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 27 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/benchmark.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
![GitHub](https://img.shields.io/github/license/go-spectest/imaging?style=flat-square)
[![Go Reference](https://pkg.go.dev/badge/github.com/go-spectest/imaging.svg)](https://pkg.go.dev/github.com/go-spectest/imaging)
![Coverage](https://raw.githubusercontent.com/go-spectest/octocovs-central-repo/main/badges/go-spectest/imaging/coverage.svg)
[![Bench](https://github.com/go-spectest/imaging/actions/workflows/benchmark.yml/badge.svg)](https://github.com/go-spectest/imaging/actions/workflows/benchmark.yml)
[![LinuxUnitTest](https://github.com/go-spectest/imaging/actions/workflows/linux_test.yml/badge.svg)](https://github.com/go-spectest/imaging/actions/workflows/linux_test.yml)
[![MacUnitTest](https://github.com/go-spectest/imaging/actions/workflows/mac_test.yml/badge.svg)](https://github.com/go-spectest/imaging/actions/workflows/mac_test.yml)
[![WindowsUnitTest](https://github.com/go-spectest/imaging/actions/workflows/windows_test.yml/badge.svg)](https://github.com/go-spectest/imaging/actions/workflows/windows_test.yml)
Expand Down
13 changes: 13 additions & 0 deletions cmd/gina/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
module github.com/go-spectest/imaging/cmd/gina

go 1.20

require (
github.com/go-spectest/imaging v1.0.6
github.com/google/go-cmp v0.6.0
github.com/spf13/cobra v1.7.0
)

require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/image v0.13.0 // indirect
golang.org/x/sync v0.4.0 // indirect
)
18 changes: 18 additions & 0 deletions cmd/gina/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/go-spectest/imaging v1.0.6 h1:b7qzcXLs1p9uZMjAKO+oe+a6EGo5JbwPDkcWafmTnX8=
github.com/go-spectest/imaging v1.0.6/go.mod h1:/AyhBt5HEFGDPy2AxP+hcV5NH8QQpftJP9g3yGOVtvs=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I=
github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
golang.org/x/image v0.13.0 h1:3cge/F/QTkNLauhf2QoE9zp+7sr+ZcL4HnoZmdwg9sg=
golang.org/x/image v0.13.0/go.mod h1:6mmbMOeV28HuMTgA6OSRkdXKYw/t5W9Uwn2Yv1r3Yxk=
golang.org/x/sync v0.4.0 h1:zxkM55ReGkDlKSM+Fu41A+zmbZuaPVbGMzvvdUPznYQ=
golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 comments on commit 45b5d4c

Please sign in to comment.