Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix vendors #23

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ replace (
go.osspkg.com/x/algorithms => ../algorithms
go.osspkg.com/x/config => ../config
go.osspkg.com/x/console => ../console
go.osspkg.com/x/xc => ../xc
go.osspkg.com/x/env => ../env
go.osspkg.com/x/errors => ../errors
go.osspkg.com/x/logx => ../logx
go.osspkg.com/x/syncing => ../syncing
go.osspkg.com/x/syscall => ../syscall
go.osspkg.com/x/test => ../test
go.osspkg.com/x/xc => ../xc
)

require (
go.osspkg.com/x/algorithms v0.5.0
go.osspkg.com/x/config v0.5.1
go.osspkg.com/x/console v0.5.1
go.osspkg.com/x/xc v0.5.0
go.osspkg.com/x/env v0.5.0
go.osspkg.com/x/errors v0.5.0
go.osspkg.com/x/logx v0.5.2
go.osspkg.com/x/syncing v0.5.1
go.osspkg.com/x/syscall v0.5.0
go.osspkg.com/x/test v0.5.0
go.osspkg.com/x/xc v0.5.0
)

require (
Expand Down
2 changes: 1 addition & 1 deletion config/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module go.osspkg.com/x/config

go 1.20

replace go.osspkg.com/x/test => ./../test
replace go.osspkg.com/x/test => ../test

require (
go.osspkg.com/x/test v0.5.0
Expand Down
4 changes: 0 additions & 4 deletions go.work.sum
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
go.osspkg.com/x/sync v0.5.1 h1:3aTok1Sh6hZkD5QtC1Va8i1kGlNiZEADvJfQo/SIPQE=
go.osspkg.com/x/sync v0.5.1/go.mod h1:eFQ3C0NZtd2mu29VdN8cVjDy6S/Iy85Uw/Tlqq98rrc=
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA=
golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
Loading