-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
66 lines (62 loc) · 2.69 KB
/
go.mod
File metadata and controls
66 lines (62 loc) · 2.69 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
module github.com/go-ap/storage-sqlite
go 1.25.0
require (
github.com/carlmjohnson/be v0.23.2
github.com/go-ap/activitypub v0.0.0-20260602080815-739274c2fcce
github.com/go-ap/cache v0.0.0-20260602080918-ccf86cfda6bb
github.com/go-ap/errors v0.0.0-20260208110149-e1b309365966
github.com/go-ap/filters v0.0.0-20260602081319-5ed1fa02cd11
github.com/go-ap/jsonld v0.0.0-20251216162253-e38fa664ea77
github.com/go-ap/storage-conformance-suite v0.0.0-20260516093850-f84de69d19fe
github.com/google/go-cmp v0.7.0
github.com/leporo/sqlf v1.4.0
github.com/mattn/go-sqlite3 v1.14.44
github.com/openshift/osin v1.0.2-0.20220317075346-0f4d38c6e53f
golang.org/x/crypto v0.52.0
modernc.org/sqlite v1.51.0
)
require (
git.sr.ht/~mariusor/go-xsd-duration v0.0.0-20220703122237-02e73435a078 // indirect
github.com/RoaringBitmap/roaring v1.9.4 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/bits-and-blooms/bitset v1.24.4 // indirect
github.com/charmbracelet/colorprofile v0.3.1 // indirect
github.com/charmbracelet/lipgloss v1.1.0 // indirect
github.com/charmbracelet/x/ansi v0.9.2 // indirect
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
github.com/charmbracelet/x/term v0.2.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/jdkato/prose v1.2.1 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.22 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mattn/goveralls v0.0.12 // indirect
github.com/mfridman/tparse v0.18.0 // indirect
github.com/mschoch/smat v0.2.0 // indirect
github.com/muesli/termenv v0.16.0 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fastjson v1.6.10 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa // indirect
golang.org/x/mod v0.35.0 // indirect
golang.org/x/sys v0.45.0 // indirect
golang.org/x/term v0.43.0 // indirect
golang.org/x/text v0.37.0 // indirect
golang.org/x/tools v0.44.0 // indirect
gopkg.in/neurosnap/sentences.v1 v1.0.7 // indirect
modernc.org/libc v1.72.5 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.11.0 // indirect
quamina.net/go/quamina/v2 v2.0.2 // indirect
)
tool (
github.com/mattn/goveralls
github.com/mfridman/tparse
)