diff options
author | Francis Lavoie <[email protected]> | 2024-04-04 18:27:52 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-04 18:27:52 -0400 |
commit | 1c4a80766725de0147190c0ab329c4f634ca7f86 (patch) | |
tree | c54a1d553b4fe4c41fc7c70910c204ec8d3590ce /caddyconfig | |
parent | 45132c5b24b411afbf90e8f897a1598d4eca790f (diff) | |
download | caddy-1c4a80766725de0147190c0ab329c4f634ca7f86.tar.gz caddy-1c4a80766725de0147190c0ab329c4f634ca7f86.zip |
chore: Upgrade some dependencies (#6221)
Diffstat (limited to 'caddyconfig')
-rw-r--r-- | caddyconfig/caddyfile/formatter.go | 3 | ||||
-rw-r--r-- | caddyconfig/httpcaddyfile/httptype.go | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/caddyconfig/caddyfile/formatter.go b/caddyconfig/caddyfile/formatter.go index d506219c4..d35f0ac6b 100644 --- a/caddyconfig/caddyfile/formatter.go +++ b/caddyconfig/caddyfile/formatter.go @@ -17,9 +17,8 @@ package caddyfile import ( "bytes" "io" + "slices" "unicode" - - "golang.org/x/exp/slices" ) // Format formats the input Caddyfile to a standard, nice-looking diff --git a/caddyconfig/httpcaddyfile/httptype.go b/caddyconfig/httpcaddyfile/httptype.go index da5557aa8..99411d1cc 100644 --- a/caddyconfig/httpcaddyfile/httptype.go +++ b/caddyconfig/httpcaddyfile/httptype.go @@ -19,12 +19,12 @@ import ( "fmt" "net" "reflect" + "slices" "sort" "strconv" "strings" "go.uber.org/zap" - "golang.org/x/exp/slices" "github.com/caddyserver/caddy/v2" "github.com/caddyserver/caddy/v2/caddyconfig" |