diff options
author | Matt Joiner <anacrolix@gmail.com> | 2022-11-06 15:33:34 +1100 |
---|---|---|
committer | Matt Joiner <anacrolix@gmail.com> | 2022-11-06 15:33:34 +1100 |
commit | 4e9a644f8c2b8081dcda3261340ed4eb2ec1e6bd (patch) | |
tree | 38f8ab033fd2ebb7f2683c02b9b3b331c8b5ff41 | |
parent | exclude github.com/benbjohnson/immutable v0.4.0 (diff) | |
download | stm-4e9a644f8c2b8081dcda3261340ed4eb2ec1e6bd.tar.gz stm-4e9a644f8c2b8081dcda3261340ed4eb2ec1e6bd.tar.xz |
Move direct dep out of indirect require block
Diffstat (limited to '')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,6 +3,7 @@ module github.com/anacrolix/stm go 1.18 require ( + github.com/alecthomas/atomic v0.1.0-alpha2 github.com/anacrolix/envpprof v1.0.0 github.com/anacrolix/missinggo v1.1.0 github.com/anacrolix/missinggo/v2 v2.2.0 @@ -11,7 +12,6 @@ require ( ) 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 |