-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yangyile
committed
Nov 30, 2024
1 parent
c344fda
commit 37d58a6
Showing
3 changed files
with
90 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
*.a | ||
*.so | ||
*.exe | ||
*.pyc | ||
*.log | ||
*.dll | ||
*.out | ||
*.key | ||
_test | ||
*.test | ||
*.cert | ||
*.exe~ | ||
go.work | ||
.Trash-* | ||
.DS_Store | ||
go.work.sum | ||
main.out.bin | ||
*gitignore*secrets* | ||
*gitignore*outputs* | ||
ehthumbs.db | ||
Thumbs.db | ||
.gitkeep | ||
.vscode/ | ||
*.dylib | ||
vendor/ | ||
.idea/ | ||
*.err | ||
*.swp | ||
_obj | ||
tmp/ | ||
bin/ | ||
tags | ||
*.DB | ||
*.db | ||
*.o | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
module github.com/yyle88/neatjson | ||
|
||
go 1.22.6 | ||
go 1.22.8 | ||
|
||
require ( | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/yyle88/erero v1.0.11 | ||
github.com/yyle88/runpath v1.0.9 | ||
github.com/yyle88/sure v0.0.23 | ||
github.com/yyle88/syntaxgo v0.0.27 | ||
github.com/stretchr/testify v1.10.0 | ||
github.com/yyle88/erero v1.0.14 | ||
github.com/yyle88/runpath v1.0.21 | ||
github.com/yyle88/sure v0.0.28 | ||
github.com/yyle88/syntaxgo v0.0.35 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/yyle88/done v1.0.10 // indirect | ||
github.com/yyle88/formatgo v1.0.11 // indirect | ||
github.com/yyle88/must v0.0.2 // indirect | ||
github.com/yyle88/mutexmap v1.0.4 // indirect | ||
github.com/yyle88/zaplog v0.0.10 // indirect | ||
github.com/yyle88/done v1.0.18 // indirect | ||
github.com/yyle88/formatgo v1.0.17 // indirect | ||
github.com/yyle88/must v0.0.9 // indirect | ||
github.com/yyle88/mutexmap v1.0.8 // indirect | ||
github.com/yyle88/printgo v1.0.1 // indirect | ||
github.com/yyle88/rese v0.0.1 // indirect | ||
github.com/yyle88/tern v0.0.3 // indirect | ||
github.com/yyle88/zaplog v0.0.16 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/tools v0.25.0 // indirect | ||
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/tools v0.27.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters