Skip to content

Commit

Permalink
Move github.com/marten-seemann/qpack to github.com/quic-go/qpack
Browse files Browse the repository at this point in the history
  • Loading branch information
imroc committed Feb 2, 2023
1 parent a6c58eb commit 8adac86
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 27 deletions.
9 changes: 4 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,20 @@ require (
github.com/francoispqt/gojay v1.2.13
github.com/golang/mock v1.6.0
github.com/hashicorp/go-multierror v1.1.1
github.com/marten-seemann/qpack v0.2.1
github.com/marten-seemann/qtls-go1-16 v0.1.5
github.com/marten-seemann/qtls-go1-17 v0.1.2
github.com/marten-seemann/qtls-go1-18 v0.1.3
github.com/marten-seemann/qtls-go1-19 v0.1.1
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.13.0
github.com/onsi/gomega v1.20.1
github.com/quic-go/qpack v0.4.0
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
golang.org/x/net v0.0.0-20220722155237-a158d28d115b
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f
golang.org/x/text v0.3.7
)

require (
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
golang.org/x/tools v0.1.11 // indirect
)
54 changes: 40 additions & 14 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/http3/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/imroc/req/v3/internal/quic-go/qtls"
"github.com/imroc/req/v3/internal/quic-go/quicvarint"
"github.com/imroc/req/v3/internal/quic-go/utils"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"io"
"net/http"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion internal/http3/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"crypto/tls"
"errors"
"fmt"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"io"
"io/ioutil"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion internal/http3/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package http3
import (
"crypto/tls"
"errors"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"net/http"
"net/url"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion internal/http3/request_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package http3

import (
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"net/http"
"net/url"

Expand Down
2 changes: 1 addition & 1 deletion internal/http3/request_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"github.com/imroc/req/v3/internal/dump"
"github.com/imroc/req/v3/internal/header"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"io"
"net"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion internal/http3/request_writer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package http3

import (
"bytes"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"io"
"net/http"

Expand Down
2 changes: 1 addition & 1 deletion internal/http3/response_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package http3
import (
"bufio"
"bytes"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"net/http"
"strconv"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion internal/http3/response_writer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package http3

import (
"bytes"
"github.com/marten-seemann/qpack"
"github.com/quic-go/qpack"
"io"
"net/http"

Expand Down

0 comments on commit 8adac86

Please sign in to comment.