aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMatt Joiner <anacrolix@gmail.com>2022-06-14 08:59:02 +1000
committerGitHub <noreply@github.com>2022-06-14 08:59:02 +1000
commit4f6e80b7bb8c9a8b3036e54b6d02dcc66a690162 (patch)
treeb4810cadfd0ce4a21963ccac5a051e9a50a91f4f /go.mod
parentBump test timeout (#3) (diff)
parentreplace "interface{}" with "any" (diff)
downloadstm-4f6e80b7bb8c9a8b3036e54b6d02dcc66a690162.tar.gz
stm-4f6e80b7bb8c9a8b3036e54b6d02dcc66a690162.tar.xz
Merge pull request #4 from chrismwendt/generics
Generics
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod10
1 files changed, 9 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 4ef81a7..ed11f22 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/anacrolix/stm
-go 1.13
+go 1.18
require (
github.com/anacrolix/envpprof v1.0.0
@@ -9,3 +9,11 @@ require (
github.com/benbjohnson/immutable v0.2.0
github.com/stretchr/testify v1.3.0
)
+
+require (
+ github.com/alecthomas/atomic v0.1.0-alpha2
+ github.com/bradfitz/iter v0.0.0-20190303215204-33e6a9893b0c // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/huandu/xstrings v1.2.0 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+)