diff options
author | Daniel Lublin <daniel@lublin.se> | 2019-06-27 13:06:41 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-27 09:24:20 -0400 |
commit | 963d251289fec0cd4a4e82989b621705c3a8c79d (patch) | |
tree | 431a0f4596f92d521377be329ac9c314bfec7090 /go.mod | |
parent | bf02ad30ca118df09203ce34bba36a5fb9d5d450 (diff) | |
download | aerc-963d251289fec0cd4a4e82989b621705c3a8c79d.tar.gz |
Set the required go version for this module, aerc
This is the way to declare which compiler version a module requires to build.
I read up on https://golang.org/doc/go1.12#modules
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,7 @@ module git.sr.ht/~sircmpwn/aerc +go 1.12 + require ( git.sr.ht/~sircmpwn/getopt v0.0.0-20190609193657-e7e23d1cd3a3 git.sr.ht/~sircmpwn/pty v0.0.0-20190330154901-3a43678975a9 |