AUR provides search rpc (#1856)

* add support for provides search in AUR RPC client

* return provides search to default true
This commit is contained in:
Jo
2022-12-18 01:36:49 +00:00
committed by GitHub
parent 27cbbf4cb9
commit 4a3e365fc5
4 changed files with 25 additions and 38 deletions

14
go.mod
View File

@@ -1,7 +1,7 @@
module github.com/Jguer/yay/v11
require (
github.com/Jguer/aur v1.1.1
github.com/Jguer/aur v1.1.2
github.com/Jguer/go-alpm/v2 v2.1.2
github.com/Jguer/votar v1.0.0
github.com/Morganamilo/go-pacmanconf v0.0.0-20210502114700-cff030e927a5
@@ -9,9 +9,9 @@ require (
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
github.com/leonelquinteros/gotext v1.5.0
github.com/stretchr/testify v1.8.1
golang.org/x/sys v0.2.0
golang.org/x/term v0.2.0
golang.org/x/text v0.4.0 // indirect
golang.org/x/sys v0.3.0
golang.org/x/term v0.3.0
golang.org/x/text v0.5.0 // indirect
gopkg.in/h2non/gock.v1 v1.1.2
)
@@ -26,9 +26,9 @@ require (
require (
github.com/deckarep/golang-set/v2 v2.1.0
github.com/itchyny/gojq v0.12.9 // indirect
github.com/itchyny/timefmt-go v0.1.4 // indirect
github.com/ohler55/ojg v1.14.5 // indirect
github.com/itchyny/gojq v0.12.10 // indirect
github.com/itchyny/timefmt-go v0.1.5 // indirect
github.com/ohler55/ojg v1.15.0 // indirect
)
go 1.19