Skip to content

Commit 6bc669f

Browse files
committed
Improvements to feed checking (including some tests)
1 parent b0324d9 commit 6bc669f

File tree

5 files changed

+185
-103
lines changed

5 files changed

+185
-103
lines changed

go.mod

+26-25
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,58 @@
11
module github.com/FileFormatInfo/fflint
22

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/JoshVarga/svgparser v0.0.0-20200804023048-5eaba627a7d1
77
github.com/adrg/frontmatter v0.2.0
8-
github.com/antchfx/xmlquery v1.3.3
9-
github.com/bmatcuk/doublestar/v4 v4.0.2
8+
github.com/antchfx/xmlquery v1.4.2
9+
github.com/bmatcuk/doublestar/v4 v4.7.1
1010
github.com/cevaris/ordered_map v0.0.0-20220813181356-34664b69742b
11-
github.com/cheggaaa/pb/v3 v3.0.8
12-
github.com/mattn/go-isatty v0.0.18
11+
github.com/cheggaaa/pb/v3 v3.1.5
12+
github.com/mattn/go-isatty v0.0.20
1313
github.com/mitchellh/go-homedir v1.1.0
1414
github.com/mmcdole/gofeed v1.3.0
1515
github.com/muesli/mango-cobra v1.2.0
1616
github.com/muesli/roff v0.1.0
1717
github.com/olekukonko/tablewriter v0.0.5
18-
github.com/rogpeppe/go-internal v1.10.0
18+
github.com/rogpeppe/go-internal v1.13.1
1919
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
2020
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
21-
github.com/shopspring/decimal v1.3.1
22-
github.com/spf13/cobra v1.7.0
21+
github.com/shopspring/decimal v1.4.0
22+
github.com/spf13/cobra v1.8.1
2323
github.com/spf13/pflag v1.0.5
24-
github.com/zyxar/image2ascii v0.0.0-20180912034614-460a04e371ae
25-
golang.org/x/exp v0.0.0-20230321023759-10a507213a29
26-
golang.org/x/net v0.14.0
24+
github.com/zyxar/image2ascii v0.0.0-20231201150218-0baccbec7582
25+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
26+
golang.org/x/net v0.31.0
2727
gopkg.in/yaml.v2 v2.4.0
2828
gopkg.in/yaml.v3 v3.0.1
2929
)
3030

3131
require (
32-
github.com/BurntSushi/toml v1.2.1 // indirect
33-
github.com/PuerkitoBio/goquery v1.8.0 // indirect
34-
github.com/VividCortex/ewma v1.1.1 // indirect
35-
github.com/andybalholm/cascadia v1.3.1 // indirect
36-
github.com/antchfx/xpath v1.2.0 // indirect
37-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
38-
github.com/fatih/color v1.13.0 // indirect
32+
github.com/BurntSushi/toml v1.4.0 // indirect
33+
github.com/PuerkitoBio/goquery v1.10.0 // indirect
34+
github.com/VividCortex/ewma v1.2.0 // indirect
35+
github.com/andybalholm/cascadia v1.3.2 // indirect
36+
github.com/antchfx/xpath v1.3.2 // indirect
37+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
38+
github.com/fatih/color v1.18.0 // indirect
3939
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4040
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4141
github.com/json-iterator/go v1.1.12 // indirect
42-
github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
42+
github.com/jsummers/gobmp v0.0.0-20230614200233-a9de23ed2e25 // indirect
4343
github.com/kr/pretty v0.3.1 // indirect
4444
github.com/mattn/go-colorable v0.1.13 // indirect
45-
github.com/mattn/go-runewidth v0.0.14 // indirect
46-
github.com/mmcdole/goxpp v1.1.1-0.20240225020742-a0c311522b23 // indirect
45+
github.com/mattn/go-runewidth v0.0.16 // indirect
46+
github.com/mmcdole/goxpp v1.1.1 // indirect
4747
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4848
github.com/modern-go/reflect2 v1.0.2 // indirect
49-
github.com/muesli/mango v0.1.0 // indirect
49+
github.com/muesli/mango v0.2.0 // indirect
5050
github.com/muesli/mango-pflag v0.1.0 // indirect
51-
github.com/rivo/uniseg v0.4.2 // indirect
51+
github.com/rivo/uniseg v0.4.7 // indirect
5252
github.com/russross/blackfriday/v2 v2.1.0 // indirect
5353
github.com/stretchr/testify v1.8.4 // indirect
54-
golang.org/x/sys v0.11.0 // indirect
55-
golang.org/x/text v0.12.0 // indirect
54+
golang.org/x/sys v0.27.0 // indirect
55+
golang.org/x/text v0.20.0 // indirect
56+
golang.org/x/tools v0.27.0 // indirect
5657
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
5758
)

0 commit comments

Comments
 (0)