File tree 7 files changed +45
-46
lines changed
7 files changed +45
-46
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -131,16 +131,10 @@ Type `massren --help --config` (or `massren -ch`) to view the possible configura
131
131
132
132
## Building from source
133
133
134
- - Go 1.3 + is required
134
+ - Go 1.17 + is required
135
135
136
- go get github.com/laurent22/massren
136
+ go mod tidy
137
137
go build
138
-
139
- - If it doesn't build on OSX, try with:
140
-
141
- go get -x -ldflags -linkmode=external github.com/laurent22/massren
142
-
143
- More info in [ this issue] ( https://github.com/laurent22/massren/issues/7 ) .
144
138
145
139
## Test units
146
140
Original file line number Diff line number Diff line change
1
+ module github.com/laurent22/massren
2
+
3
+ go 1.22.0
4
+
5
+ require (
6
+ github.com/jessevdk/go-flags v0.0.0-20151018211510-4047bd797dd9
7
+ github.com/kr/text v0.0.0-20130911015532-6807e777504f
8
+ github.com/laurent22/go-sqlkv v0.0.0-20140919090402-db1022af2c66
9
+ github.com/laurent22/go-trash v0.0.0-20150202180955-681610e5e1bc
10
+ github.com/mattn/go-sqlite3 v0.0.0-20150127001921-25d045f12a64
11
+ github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
12
+ )
Original file line number Diff line number Diff line change
1
+ github.com/jessevdk/go-flags v0.0.0-20151018211510-4047bd797dd9 h1:PSPYIsaVMJhLmEu95g3hW2qzg17OLzsxVYpis1OfjWc =
2
+ github.com/jessevdk/go-flags v0.0.0-20151018211510-4047bd797dd9 /go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI =
3
+ github.com/kr/text v0.0.0-20130911015532-6807e777504f h1:JaNmHIV9Eby6srQVWuiQ6n8ko2o/lG6udSRCbFZe1fs =
4
+ github.com/kr/text v0.0.0-20130911015532-6807e777504f /go.mod h1:sjUstKUATFIcff4qlB53Kml0wQPtJVc/3fWrmuUmcfA =
5
+ github.com/laurent22/go-sqlkv v0.0.0-20140919090402-db1022af2c66 h1:VTaw1HULypzR5GOHJsGYjWmvbhTsJfznGDVexKaPPSY =
6
+ github.com/laurent22/go-sqlkv v0.0.0-20140919090402-db1022af2c66 /go.mod h1:r3x+J38xknkgf11E+ECTWBklI6qo2nfH96hKH26NJQU =
7
+ github.com/laurent22/go-trash v0.0.0-20150202180955-681610e5e1bc h1:Q+jQNLWBZP8ys5oK3kH6+cxDth04ZZEbWBN1RJ+Bip0 =
8
+ github.com/laurent22/go-trash v0.0.0-20150202180955-681610e5e1bc /go.mod h1:eXLX8oRhB8MuD8er7n4QQYCultp7I+dI3rZVnNAFpnk =
9
+ github.com/mattn/go-sqlite3 v0.0.0-20150127001921-25d045f12a64 h1:ZGTxuQ4twqaQhcDWA0TtuGDFoaCl6H1YE5Ff3DpLUoM =
10
+ github.com/mattn/go-sqlite3 v0.0.0-20150127001921-25d045f12a64 /go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc =
11
+ github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d h1:VhgPp6v9qf9Agr/56bj7Y/xa04UccTW04VP0Qed4vnQ =
12
+ github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d /go.mod h1:YUTz3bUH2ZwIWBy3CJBeOBEugqcmXREj14T+iG/4k4U =
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
"github.com/jessevdk/go-flags"
20
20
"github.com/kr/text"
21
21
"github.com/laurent22/go-trash"
22
- "github.com/nu7hatch/gouuid"
22
+ uuid "github.com/nu7hatch/gouuid"
23
23
)
24
24
25
25
var flagParser_ * flags.Parser
Original file line number Diff line number Diff line change
1
+ # github.com/jessevdk/go-flags v0.0.0-20151018211510-4047bd797dd9
2
+ ## explicit
3
+ github.com/jessevdk/go-flags
4
+ # github.com/kr/text v0.0.0-20130911015532-6807e777504f
5
+ ## explicit
6
+ github.com/kr/text
7
+ # github.com/laurent22/go-sqlkv v0.0.0-20140919090402-db1022af2c66
8
+ ## explicit
9
+ github.com/laurent22/go-sqlkv
10
+ # github.com/laurent22/go-trash v0.0.0-20150202180955-681610e5e1bc
11
+ ## explicit
12
+ github.com/laurent22/go-trash
13
+ # github.com/mattn/go-sqlite3 v0.0.0-20150127001921-25d045f12a64
14
+ ## explicit
15
+ github.com/mattn/go-sqlite3
16
+ # github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
17
+ ## explicit
18
+ github.com/nu7hatch/gouuid
You can’t perform that action at this time.
0 commit comments