Skip to content
This repository was archived by the owner on Dec 13, 2024. It is now read-only.

Commit da7729a

Browse files
author
sfomuseumbot
committed
update vendor deps
1 parent 64a90c3 commit da7729a

File tree

507 files changed

+40172
-11316
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

507 files changed

+40172
-11316
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
GOMOD=$(shell test -f "go.work" && echo "readonly" || echo "vendor")
2+
13
cli:
2-
go build -mod vendor -o bin/wof-sqlite-index-features cmd/wof-sqlite-index-features/main.go
4+
go build -mod $(GOMOD) -ldflags="-s -w" -o bin/wof-sqlite-index-features cmd/wof-sqlite-index-features/main.go

cmd/wof-sqlite-index-features/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ func main() {
2222
err := index.Run(ctx, logger)
2323

2424
if err != nil {
25-
logger.Fatal("Failed to index, %v", err)
25+
logger.Fatalf("Failed to index, %v", err)
2626
}
2727
}

go.mod

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,58 +5,59 @@ go 1.18
55
require (
66
github.com/aaronland/go-sqlite-modernc v0.0.1
77
github.com/aaronland/go-sqlite/v2 v2.2.0
8-
github.com/sfomuseum/go-flags v0.7.0
9-
github.com/tidwall/gjson v1.14.4
8+
github.com/sfomuseum/go-flags v0.10.0
9+
github.com/tidwall/gjson v1.16.0
1010
github.com/whosonfirst/go-reader v1.0.2
1111
github.com/whosonfirst/go-reader-http v0.3.1
12-
github.com/whosonfirst/go-whosonfirst-feature v0.0.25
13-
github.com/whosonfirst/go-whosonfirst-iterate-git/v2 v2.1.2
14-
github.com/whosonfirst/go-whosonfirst-iterate/v2 v2.3.1
12+
github.com/whosonfirst/go-whosonfirst-feature v0.0.26
13+
github.com/whosonfirst/go-whosonfirst-iterate-git/v2 v2.1.3
14+
github.com/whosonfirst/go-whosonfirst-iterate/v2 v2.3.4
1515
github.com/whosonfirst/go-whosonfirst-sqlite-features/v2 v2.0.0
1616
github.com/whosonfirst/go-whosonfirst-sqlite-index/v4 v4.0.0
17-
github.com/whosonfirst/go-whosonfirst-uri v1.2.0
17+
github.com/whosonfirst/go-whosonfirst-uri v1.3.0
1818
)
1919

2020
require (
21-
github.com/Microsoft/go-winio v0.4.16 // indirect
22-
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
23-
github.com/aaronland/go-json-query v0.1.3 // indirect
21+
github.com/Microsoft/go-winio v0.5.2 // indirect
22+
github.com/ProtonMail/go-crypto v0.0.0-20221026131551-cf6655e29de4 // indirect
23+
github.com/aaronland/go-json-query v0.1.4 // indirect
2424
github.com/aaronland/go-roster v1.0.0 // indirect
2525
github.com/acomagu/bufpipe v1.0.3 // indirect
26-
github.com/emirpasic/gods v1.12.0 // indirect
26+
github.com/cloudflare/circl v1.1.0 // indirect
27+
github.com/emirpasic/gods v1.18.1 // indirect
2728
github.com/go-git/gcfg v1.5.0 // indirect
28-
github.com/go-git/go-billy/v5 v5.3.1 // indirect
29-
github.com/go-git/go-git/v5 v5.4.2 // indirect
29+
github.com/go-git/go-billy/v5 v5.4.0 // indirect
30+
github.com/go-git/go-git/v5 v5.5.2 // indirect
3031
github.com/google/uuid v1.3.0 // indirect
3132
github.com/hashicorp/errwrap v1.0.0 // indirect
3233
github.com/hashicorp/go-multierror v1.1.1 // indirect
33-
github.com/imdario/mergo v0.3.12 // indirect
34+
github.com/imdario/mergo v0.3.13 // indirect
3435
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3536
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
36-
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
37+
github.com/kevinburke/ssh_config v1.2.0 // indirect
3738
github.com/mattn/go-isatty v0.0.16 // indirect
38-
github.com/mitchellh/go-homedir v1.1.0 // indirect
39-
github.com/paulmach/orb v0.7.1 // indirect
39+
github.com/paulmach/orb v0.8.0 // indirect
40+
github.com/pjbgf/sha1cd v0.2.3 // indirect
4041
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
4142
github.com/sergi/go-diff v1.1.0 // indirect
4243
github.com/sfomuseum/go-edtf v1.1.1 // indirect
44+
github.com/skeema/knownhosts v1.1.0 // indirect
4345
github.com/tidwall/match v1.1.1 // indirect
4446
github.com/tidwall/pretty v1.2.0 // indirect
4547
github.com/whosonfirst/go-ioutil v1.0.2 // indirect
4648
github.com/whosonfirst/go-rfc-5646 v0.1.0 // indirect
47-
github.com/whosonfirst/go-whosonfirst-crawl v0.2.1 // indirect
49+
github.com/whosonfirst/go-whosonfirst-crawl v0.2.2 // indirect
4850
github.com/whosonfirst/go-whosonfirst-flags v0.4.4 // indirect
4951
github.com/whosonfirst/go-whosonfirst-names v0.1.0 // indirect
5052
github.com/whosonfirst/go-whosonfirst-sources v0.1.0 // indirect
5153
github.com/whosonfirst/go-whosonfirst-spr/v2 v2.3.3 // indirect
52-
github.com/whosonfirst/walk v0.0.1 // indirect
53-
github.com/xanzy/ssh-agent v0.3.0 // indirect
54-
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
55-
golang.org/x/mod v0.3.0 // indirect
56-
golang.org/x/net v0.0.0-20210326060303-6b1517762897 // indirect
57-
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
58-
golang.org/x/tools v0.0.0-20210106214847-113979e3529a // indirect
59-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
54+
github.com/whosonfirst/walk v0.0.2 // indirect
55+
github.com/xanzy/ssh-agent v0.3.3 // indirect
56+
golang.org/x/crypto v0.3.0 // indirect
57+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
58+
golang.org/x/net v0.2.0 // indirect
59+
golang.org/x/sys v0.3.0 // indirect
60+
golang.org/x/tools v0.1.12 // indirect
6061
gopkg.in/warnings.v0 v0.1.2 // indirect
6162
lukechampine.com/uint128 v1.2.0 // indirect
6263
modernc.org/cc/v3 v3.40.0 // indirect

0 commit comments

Comments
 (0)