-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
62 lines (59 loc) · 2.36 KB
/
go.mod
File metadata and controls
62 lines (59 loc) · 2.36 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
module github.com/ripta/rt
go 1.25.0
require (
github.com/BurntSushi/toml v1.6.0
github.com/containerd/console v1.0.5
github.com/elk-language/go-prompt v1.3.1
github.com/go-logfmt/logfmt v0.6.1
github.com/google/cel-go v0.27.0
github.com/gosuri/uilive v0.0.4
github.com/hashicorp/hcl/v2 v2.24.0
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
github.com/mr-tron/base58 v1.3.0
github.com/r3labs/diff/v3 v3.0.2
github.com/ripta/hypercmd v0.5.0
github.com/ripta/reals v0.0.0-20251220032726-c99f163d5c5c
github.com/ripta/unihan v0.0.0-20250404091138-c307c698a880
github.com/rogpeppe/go-internal v1.14.1
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/stretchr/testify v1.11.1
github.com/thediveo/enumflag/v2 v2.2.0
github.com/vmihailenco/msgpack/v5 v5.4.1
github.com/zclconf/go-cty v1.18.0
golang.org/x/crypto v0.49.0
golang.org/x/term v0.41.0
golang.org/x/text v0.35.0
golang.org/x/time v0.15.0
google.golang.org/protobuf v1.36.11
gopkg.in/yaml.v3 v3.0.1
lukechampine.com/blake3 v1.4.1
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3
)
require (
cel.dev/expr v0.25.1 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.20 // indirect
github.com/mattn/go-tty v0.0.7 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa // indirect
golang.org/x/mod v0.33.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/tools v0.42.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260217215200-42d3e9bedb6d // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260217215200-42d3e9bedb6d // indirect
)