Files
initrd/go.mod

36 lines
1.1 KiB
Modula-2
Raw Normal View History

2024-01-20 16:41:54 +01:00
module novit.tech/direktil/initrd
2019-02-11 16:05:43 +11:00
require (
2024-11-04 16:18:53 +01:00
github.com/creack/pty v1.1.24
2023-12-04 13:59:37 +01:00
github.com/freddierice/go-losetup/v2 v2.0.1
2024-11-04 16:18:53 +01:00
github.com/jochenvg/go-udev v0.0.0-20240801134859-b65ed646224b
github.com/pkg/term v1.1.0
2025-06-02 14:53:05 +02:00
github.com/rs/zerolog v1.34.0
golang.org/x/crypto v0.38.0
golang.org/x/sys v0.33.0
golang.org/x/term v0.32.0
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20241231184526-a9ab2273dd10
2022-02-04 19:59:42 +01:00
gopkg.in/yaml.v2 v2.4.0
2023-02-02 00:28:36 +01:00
gopkg.in/yaml.v3 v3.0.1
2024-11-04 16:18:53 +01:00
novit.tech/direktil/pkg v0.0.0-20240415130406-0d2e181a4ed6
2019-02-11 16:05:43 +11:00
)
2019-10-17 11:28:18 +11:00
2022-04-04 10:29:28 +02:00
require (
github.com/cavaliergopher/cpio v1.0.1 // indirect
2025-06-02 14:53:05 +02:00
github.com/google/go-cmp v0.7.0 // indirect
2024-11-04 16:18:53 +01:00
github.com/jkeiser/iter v0.0.0-20200628201005-c8aa0ae784d1 // indirect
2023-02-02 00:28:36 +01:00
github.com/josharian/native v1.1.0 // indirect
2025-06-02 14:53:05 +02:00
github.com/mattn/go-colorable v0.1.14 // indirect
2024-01-20 16:41:54 +01:00
github.com/mattn/go-isatty v0.0.20 // indirect
2023-12-04 13:59:37 +01:00
github.com/mdlayher/genetlink v1.3.2 // indirect
github.com/mdlayher/netlink v1.7.2 // indirect
2024-11-04 16:18:53 +01:00
github.com/mdlayher/socket v0.5.1 // indirect
2025-06-02 14:53:05 +02:00
golang.org/x/net v0.40.0 // indirect
golang.org/x/sync v0.14.0 // indirect
golang.zx2c4.com/wireguard v0.0.0-20250521234502-f333402bd9cb // indirect
2022-04-04 10:29:28 +02:00
)
2022-02-04 19:59:42 +01:00
2025-06-02 14:53:05 +02:00
go 1.23.1
toolchain go1.24.3