ccebc4f53c
Go 1.16 elides dependencies from go.sum when you don't use a package which has these dependencies. This means dependencies for the `rice` command where not in our `go.sum`. Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
9 lines
120 B
Go
9 lines
120 B
Go
//+build tools
|
|
|
|
package build
|
|
|
|
import (
|
|
_ "github.com/GeertJohan/go.rice/rice"
|
|
_ "github.com/whyrusleeping/bencher"
|
|
)
|