feat(common): 添加无锁并发工具包依赖

新增 lockfree-1.1.3 工具包到 go.work 文件中,为项目提供无锁并发数据结构支持,
提升高并发场景下的性能表现。
This commit is contained in:
2025-12-05 00:36:28 +08:00
parent 43813932c9
commit 269256a861
40 changed files with 2900 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
module github.com/bruceshao/lockfree
go 1.18
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.8.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)