mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-27 10:18:47 +00:00
go-yaml/yaml has been deprecated by its maintainer; Move to goccy/go-yaml, which is an actively maintained from a scratch yaml implementation in pure go. It should able to parse all yaml file go-yaml could, and more. As an extra benefit its errors are a lot better. Fixes: #592 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
28 lines
866 B
Modula-2
28 lines
866 B
Modula-2
module github.com/go-debos/debos
|
|
|
|
go 1.24
|
|
|
|
require (
|
|
al.essio.dev/pkg/shellescape v1.6.0
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/freddierice/go-losetup/v2 v2.0.1
|
|
github.com/go-debos/fakemachine v0.0.12
|
|
github.com/go-task/slim-sprig/v3 v3.0.0
|
|
github.com/goccy/go-yaml v1.18.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/jessevdk/go-flags v1.6.1
|
|
github.com/sjoerdsimons/ostree-go v0.0.0-20201014091107-8fae757256f8
|
|
github.com/stretchr/testify v1.11.1
|
|
)
|
|
|
|
require (
|
|
github.com/14rcole/gopopulate v0.0.0-20180821133914-b175b219e774 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/surma/gocpio v1.1.0 // indirect
|
|
github.com/ulikunitz/xz v0.5.15 // indirect
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|