-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
68 lines (65 loc) · 2.79 KB
/
go.mod
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
module github.com/kortschak/dex
go 1.22.7
require (
cuelang.org/go v0.10.0
gioui.org v0.3.1
github.com/BurntSushi/toml v1.3.2
github.com/bbrks/wrap/v2 v2.5.0
github.com/fsnotify/fsnotify v1.7.0
github.com/godbus/dbus/v5 v5.1.0
github.com/gofrs/flock v0.12.1
github.com/google/cel-go v0.20.1
github.com/google/go-cmp v0.6.0
github.com/jackc/pgx/v5 v5.6.0
github.com/kortschak/ardilla v0.0.0-20240121074954-8297d203ffa4
github.com/kortschak/goroutine v1.1.2
github.com/kortschak/jsonrpc2 v0.0.0-20240214190357-0539ebd6a045
github.com/rogpeppe/go-internal v1.13.1
github.com/tdewolff/canvas v0.0.0-20241004114307-d601972c0f7c
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c
golang.org/x/image v0.21.0
golang.org/x/net v0.30.0
golang.org/x/sys v0.26.0
golang.org/x/tools v0.26.0
google.golang.org/protobuf v1.33.0
modernc.org/sqlite v1.33.1
)
require (
gioui.org/cpu v0.0.0-20220412190645-f1e9e8c3b1f7 // indirect
gioui.org/shader v1.0.8 // indirect
github.com/ByteArena/poly2tri-go v0.0.0-20170716161910-d102ad91854f // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
github.com/benoitkugler/textlayout v0.3.0 // indirect
github.com/benoitkugler/textprocessing v0.0.3 // indirect
github.com/cockroachdb/apd/v3 v3.2.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-fonts/latin-modern v0.3.1 // indirect
github.com/go-text/typesetting v0.0.0-20231013144250-6cc35dbfae7d // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/sstallion/go-hid v0.14.1 // indirect
github.com/stoewer/go-strcase v1.2.0 // indirect
github.com/tdewolff/font v0.0.0-20240728193914-9dc6e3441d03 // indirect
github.com/tdewolff/minify/v2 v2.20.5 // indirect
github.com/tdewolff/parse/v2 v2.7.15 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/exp/shiny v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
modernc.org/libc v1.55.3 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/strutil v1.2.0 // indirect
modernc.org/token v1.1.0 // indirect
star-tex.org/x/tex v0.4.0 // indirect
)