-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
go.mod
28 lines (24 loc) · 749 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
module github.com/kelindar/column
go 1.19
require (
github.com/kelindar/bitmap v1.4.1
github.com/kelindar/intmap v1.1.0
github.com/kelindar/iostream v1.3.0
github.com/kelindar/simd v1.1.2
github.com/kelindar/smutex v1.0.0
github.com/klauspost/compress v1.16.6
github.com/stretchr/testify v1.8.4
github.com/tidwall/btree v1.6.0
github.com/zeebo/xxh3 v1.0.2
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1
github.com/kelindar/async v1.1.0
github.com/kelindar/xxrand v1.0.2
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.9.0 // indirect
golang.org/x/time v0.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)