-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathgo.mod
More file actions
86 lines (79 loc) · 3.77 KB
/
Copy pathgo.mod
File metadata and controls
86 lines (79 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module github.com/clawkwork/clawk
go 1.26.0
// Use our fork of gvisor-tap-vsock, which patches the TCP, UDP and ICMP
// forwarders to consult an egress allow-list before dialing.
replace github.com/containers/gvisor-tap-vsock => github.com/clawkwork/gvisor-tap-vsock v0.8.9-1
// Nested machine module — the cross-platform VM library both providers
// boot through. See ./machine/ for the implementation.
replace github.com/clawkwork/clawk/machine => ./machine
require (
charm.land/bubbles/v2 v2.1.0
charm.land/lipgloss/v2 v2.0.2
github.com/charmbracelet/x/ansi v0.11.6
github.com/charmbracelet/x/term v0.2.2
github.com/clawkwork/clawk/machine v0.0.0-00010101000000-000000000000
github.com/google/go-containerregistry v0.20.2
github.com/google/renameio/v2 v2.0.2
github.com/hugelgupf/p9 v0.4.1
github.com/prashantgupta24/mac-sleep-notifier v1.0.1
github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.11.1
golang.org/x/term v0.43.0
)
require (
charm.land/bubbletea/v2 v2.0.2 // indirect
github.com/Code-Hex/go-infinity-channel v1.0.0 // indirect
github.com/Code-Hex/vz/v3 v3.7.1 // indirect
github.com/charmbracelet/colorprofile v0.4.2 // indirect
github.com/charmbracelet/harmonica v0.2.0 // indirect
github.com/charmbracelet/ultraviolet v0.0.0-20260205113103-524a6607adb8 // indirect
github.com/charmbracelet/x/termios v0.1.1 // indirect
github.com/charmbracelet/x/windows v0.2.2 // indirect
github.com/clipperhouse/displaywidth v0.11.0 // indirect
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
github.com/containers/gvisor-tap-vsock v0.8.8 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/docker/cli v27.1.1+incompatible // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/docker-credential-helpers v0.7.0 // indirect
github.com/klauspost/compress v1.17.4 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
github.com/mattn/go-runewidth v0.0.21 // indirect
github.com/miekg/dns v1.1.72 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/vbatts/tar-split v0.11.3 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/apparentlymart/go-cidr v1.1.1 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/gopacket v1.1.19 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/inetaf/tcpproxy v0.0.0-20250222171855-c4b9df066048 // indirect
github.com/insomniacslk/dhcp v0.0.0-20240710054256-ddd8a41251c9 // indirect
github.com/pierrec/lz4/v4 v4.1.18 // indirect
github.com/sirupsen/logrus v1.9.4 // indirect
github.com/spf13/pflag v1.0.9 // indirect
github.com/u-root/uio v0.0.0-20240224005618-d2acac8f3701 // indirect
golang.org/x/crypto v0.52.0 // indirect
golang.org/x/mod v0.36.0 // indirect
golang.org/x/net v0.55.0
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.45.0
golang.org/x/time v0.12.0 // indirect
golang.org/x/tools v0.44.0 // indirect
gvisor.dev/gvisor v0.0.0-20260413194555-9680d69bf798 // indirect
)
replace github.com/hugelgupf/p9 => github.com/clawkwork/p9 v0.0.0-20260708203442-03a4a1385461