Skip to content

Commit 45c5e49

Browse files
committed
Use go.mod now. Gopkg is deprecated.
1 parent c48e322 commit 45c5e49

4 files changed

Lines changed: 20 additions & 24 deletions

File tree

Gopkg.lock

Lines changed: 0 additions & 20 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 4 deletions
This file was deleted.

go.mod

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module github.com/sahilm/fuzzy
2+
3+
go 1.24.5
4+
5+
// test dependency
6+
require github.com/kylelemons/godebug v1.1.0
7+
8+
require (
9+
golang.org/x/mod v0.26.0 // indirect
10+
golang.org/x/sync v0.16.0 // indirect
11+
golang.org/x/tools v0.35.0 // indirect
12+
)

go.sum

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
2+
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
3+
golang.org/x/mod v0.26.0 h1:EGMPT//Ezu+ylkCijjPc+f4Aih7sZvaAr+O3EHBxvZg=
4+
golang.org/x/mod v0.26.0/go.mod h1:/j6NAhSk8iQ723BGAUyoAcn7SlD7s15Dp9Nd/SfeaFQ=
5+
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
6+
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
7+
golang.org/x/tools v0.35.0 h1:mBffYraMEf7aa0sB+NuKnuCy8qI/9Bughn8dC2Gu5r0=
8+
golang.org/x/tools v0.35.0/go.mod h1:NKdj5HkL/73byiZSJjqJgKn3ep7KjFkBOkR/Hps3VPw=

0 commit comments

Comments
 (0)