update dependency

This commit is contained in:
ginuerzh
2022-03-17 22:59:58 +08:00
parent bb7fb31e3d
commit 7b5913123f
7 changed files with 13 additions and 19 deletions

View File

@ -9,9 +9,9 @@ import (
"strings"
"time"
"github.com/go-gost/config"
"github.com/go-gost/core/metadata"
"github.com/go-gost/core/registry"
"github.com/go-gost/x/config"
)
var (

View File

@ -4,13 +4,13 @@ import (
"io"
"os"
"github.com/go-gost/api"
"github.com/go-gost/config"
"github.com/go-gost/config/parsing"
"github.com/go-gost/core/logger"
metrics "github.com/go-gost/core/metrics/service"
"github.com/go-gost/core/registry"
"github.com/go-gost/core/service"
"github.com/go-gost/x/api"
"github.com/go-gost/x/config"
"github.com/go-gost/x/config/parsing"
)
func buildService(cfg *config.Config) (services []service.Service) {

View File

@ -8,9 +8,9 @@ import (
"os"
"runtime"
"github.com/go-gost/config"
"github.com/go-gost/core/logger"
"github.com/go-gost/core/metrics"
"github.com/go-gost/x/config"
)
var (

View File

@ -10,8 +10,8 @@ import (
"math/big"
"time"
"github.com/go-gost/config"
tls_util "github.com/go-gost/core/common/util/tls"
"github.com/go-gost/x/config"
)
func buildDefaultTLSConfig(cfg *config.TLSConfig) {

View File

@ -1,5 +1,5 @@
package main
const (
version = "3.0.0-alpha.4"
version = "3.0.0-beta.1"
)