Skip to content

Commit ab7d7e8

Browse files
committed
chore(deps): convert rem from go.mod dependency to local submodule
Add external/rem as a git submodule (github.com/chainreactors/rem, master branch) and update go.mod replace directive to use the local submodule path, consistent with how IoM-go and tui are managed.
1 parent f71f309 commit ab7d7e8

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@
1010
[submodule "external/tui"]
1111
path = external/tui
1212
url = https://github.com/chainreactors/tui
13+
[submodule "external/rem"]
14+
path = external/rem
15+
url = https://github.com/chainreactors/rem
16+
branch = master

external/rem

Submodule rem added at 2e3ef2f

go.mod

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/chainreactors/malice-network
33
go 1.25.0
44

55
require (
6-
filippo.io/age v1.2.1
6+
filippo.io/age v1.3.1
77
github.com/carapace-sh/carapace v1.10.3
88
github.com/chainreactors/IoM-go v0.0.0-20251104165543-b0edd05b982e
99
github.com/chainreactors/files v0.0.0-20240716182835-7884ee1e77f0
@@ -70,6 +70,7 @@ require (
7070
al.essio.dev/pkg/shellescape v1.5.1 // indirect
7171
dario.cat/mergo v1.0.0 // indirect
7272
filippo.io/edwards25519 v1.1.0 // indirect
73+
filippo.io/hpke v0.4.0 // indirect
7374
github.com/Microsoft/go-winio v0.5.1 // indirect
7475
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
7576
github.com/alibabacloud-go/alibabacloud-gateway-spi v0.0.5 // indirect
@@ -162,7 +163,6 @@ require (
162163
github.com/jinzhu/now v1.1.5 // indirect
163164
github.com/json-iterator/go v1.1.13-0.20220915233716-71ac16282d12 // indirect
164165
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
165-
github.com/klauspost/reedsolomon v1.12.0 // indirect
166166
github.com/lib/pq v1.10.9 // indirect
167167
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
168168
github.com/mailru/easyjson v0.7.7 // indirect
@@ -198,8 +198,6 @@ require (
198198
github.com/shadowsocks/go-shadowsocks2 v0.1.5 // indirect
199199
github.com/spf13/cast v1.7.1 // indirect
200200
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
201-
github.com/templexxx/cpu v0.1.1 // indirect
202-
github.com/templexxx/xorsimd v0.4.3 // indirect
203201
github.com/tengattack/gluacrypto v0.0.0-20240324200146-54b58c95c255 // indirect
204202
github.com/tjfoc/gmsm v1.4.1 // indirect
205203
github.com/twmb/murmur3 v1.1.8 // indirect
@@ -242,6 +240,7 @@ replace (
242240
replace (
243241
github.com/chainreactors/IoM-go => ./external/IoM-go
244242
github.com/chainreactors/proxyclient => github.com/chainreactors/proxyclient v1.0.3
243+
github.com/chainreactors/rem => ./external/rem
245244
github.com/chainreactors/tui => ./external/tui
246245
github.com/reeflective/console => ./external/console
247246
github.com/reeflective/readline => ./external/readline

0 commit comments

Comments
 (0)