Files
postmarketos-mkinitfs/go.mod
Clayton Craft 5dfd1e3787 use flag module from std lib for parsing cmdline args
The getopt thing was an experiment, and I'd rather lose external
dependencies than use getopt-like parsing especially since the only
argument this app takes is largely for testing/development purposes
only.
2021-09-04 23:51:26 -07:00

12 lines
330 B
Modula-2

module gitlab.com/postmarketOS/postmarketos-mkinitfs
go 1.16
require (
github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e
github.com/klauspost/compress v1.13.3 // indirect
github.com/klauspost/pgzip v1.2.5
github.com/pelletier/go-toml/v2 v2.0.0-beta.3
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
)