-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 981 Bytes
/
go.mod
File metadata and controls
27 lines (24 loc) · 981 Bytes
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
module github.com/SimonWaldherr/golang-benchmarks
go 1.23
require (
github.com/jzelinskie/whirlpool v0.0.0-20201016144138-0675e54bb004
github.com/reusee/mmh3 v0.0.0-20140820141314-64b85163255b
github.com/zeebo/blake3 v0.2.3
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8
)
require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.12 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
golang.org/x/sys v0.37.0 // indirect
modernc.org/libc v1.67.6 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.11.0 // indirect
modernc.org/sqlite v1.45.0 // indirect
simonwaldherr.de/go/golibs v0.14.0 // indirect
simonwaldherr.de/go/ranger v0.1.4 // indirect
)