Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ require (
github.com/ProtonMail/go-crypto v1.0.0
github.com/h2non/filetype v1.1.3
github.com/klauspost/compress v1.17.9
github.com/mitchellh/mapstructure v1.5.0
github.com/stretchr/testify v1.9.0
github.com/ulikunitz/xz v0.5.12
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/cloudflare/circl v1.3.9 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion pkg/yum/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
)

// Max uncompressed XML file supported
const DefaultMaxXmlSize = int64(512 * 1024 * 1024) // 512 MB
const DefaultMaxXmlSize = int64(1024 * 1024 * 1024) // 1 GB

// Package metadata of a given package
type Package struct {
Expand Down
Loading