-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (29 loc) · 972 Bytes
/
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
module github.com/outofforest/quantum
go 1.23
require (
github.com/cespare/xxhash v1.1.0
github.com/mmcloughlin/avo v0.6.0
github.com/outofforest/logger v0.5.5
github.com/outofforest/mass v0.2.1
github.com/outofforest/parallel v0.2.3
github.com/outofforest/photon v0.6.0
github.com/pkg/errors v0.9.1
github.com/samber/lo v1.47.0
github.com/stretchr/testify v1.10.0
github.com/zeebo/blake3 v0.2.4
golang.org/x/sys v0.27.0
lukechampine.com/blake3 v1.3.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)