-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,33 @@ | ||
module github.com/knqyf263/go-rpmdb | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 | ||
modernc.org/sqlite v1.14.5 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect | ||
golang.org/x/mod v0.3.0 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
lukechampine.com/uint128 v1.1.1 // indirect | ||
modernc.org/cc/v3 v3.35.22 // indirect | ||
modernc.org/ccgo/v3 v3.15.1 // indirect | ||
modernc.org/libc v1.14.1 // indirect | ||
modernc.org/mathutil v1.4.1 // indirect | ||
modernc.org/memory v1.0.5 // indirect | ||
modernc.org/opt v0.1.1 // indirect | ||
modernc.org/strutil v1.1.1 // indirect | ||
modernc.org/token v1.0.0 // indirect | ||
) |