From 8c887ca0e7086a7d934bde32d9c38eeca44a819d Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sun, 3 Jul 2022 21:07:02 -0700 Subject: [PATCH] Move to foosoft.net --- README.md | 2 +- go.mod | 12 +++++++++--- go.sum | 7 +++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d5d94af..9b74c48 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ your needs. If you already have the Go environment and toolchain set up, you can get the latest version by running: ``` -$ go get github.com/FooSoft/homemaker +$ go install foosoft.net/projects/homemaker@latest ``` Otherwise, you can use the [pre-built binaries](https://github.com/FooSoft/homemaker/releases) from the project page. diff --git a/go.mod b/go.mod index 66721b7..4c873b4 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,13 @@ -module github.com/FooSoft/homemaker +module foosoft.net/projects/homemaker + +go 1.18 require ( - github.com/naoina/go-stringutil v0.1.0 // indirect github.com/naoina/toml v0.1.1 - gopkg.in/yaml.v2 v2.2.2 + gopkg.in/yaml.v2 v2.4.0 +) + +require ( + github.com/kylelemons/godebug v1.1.0 // indirect + github.com/naoina/go-stringutil v0.1.0 // indirect ) diff --git a/go.sum b/go.sum index a939ec9..ae37fa8 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,10 @@ +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/naoina/go-stringutil v0.1.0 h1:rCUeRUHjBjGTSHl0VC00jUPLz8/F9dDzYI70Hzifhks= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.1 h1:PT/lllxVVN0gzzSqSlHEmP8MJB4MY2U7STGxiouV4X8= github.com/naoina/toml v0.1.1/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=