-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
ff24aba
commit c489b9d
Showing
3 changed files
with
44 additions
and
43 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 |
---|---|---|
|
@@ -30,6 +30,7 @@ Flags: | |
> 默认使用 http://127.0.0.1:9090 | ||
- `--clash-proxy` | ||
> 通常为 http://127.0.0.1:7890 | ||
> 通过 `clash-addr` 的 `ip` + 接口 `/configs` 获取 `Port(http)` 或 `SocksPort(socks5)` 或 `MixedPort(http)` | ||
> 如果配置了 `authentication` 需要手动指定 `--clash-secret http://user:[email protected]:7890` | ||
|
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,43 +1,43 @@ | ||
module github.com/starudream/clash-speedtest | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/starudream/go-lib/cobra/v2 v2.0.6 | ||
github.com/starudream/go-lib/core/v2 v2.0.19 | ||
github.com/starudream/go-lib/resty/v2 v2.0.9 | ||
github.com/starudream/go-lib/tablew/v2 v2.0.5 | ||
github.com/starudream/go-lib/cobra/v2 v2.0.7 | ||
github.com/starudream/go-lib/core/v2 v2.0.21 | ||
github.com/starudream/go-lib/resty/v2 v2.0.10 | ||
github.com/starudream/go-lib/tablew/v2 v2.0.6 | ||
) | ||
|
||
require github.com/cheggaaa/pb/v3 v3.1.5 | ||
|
||
require ( | ||
github.com/VividCortex/ewma v1.2.0 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/go-resty/resty/v2 v2.11.0 // indirect | ||
github.com/go-resty/resty/v2 v2.12.0 // indirect | ||
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/goccy/go-yaml v1.11.3 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/knadh/koanf/maps v0.1.1 // indirect | ||
github.com/knadh/koanf/v2 v2.0.1 // indirect | ||
github.com/knadh/koanf/v2 v2.1.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/lmittmann/tint v1.0.4 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/rivo/uniseg v0.4.6 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/samber/lo v1.39.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/cobra v1.8.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // 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