chore: change module name after fork
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
[](https://godoc.org/github.com/jackc/puddle)
|
||||

|
||||
[](https://godoc.org/github.com/andoma-go/puddle)
|
||||

|
||||
|
||||
# Puddle
|
||||
|
||||
@@ -13,11 +13,11 @@ own.
|
||||
|
||||
## Features
|
||||
|
||||
* Acquire cancellation via context standard library
|
||||
* Statistics API for monitoring pool pressure
|
||||
* No dependencies outside of standard library and golang.org/x/sync
|
||||
* High performance
|
||||
* 100% test coverage of reachable code
|
||||
- Acquire cancellation via context standard library
|
||||
- Statistics API for monitoring pool pressure
|
||||
- No dependencies outside of standard library and golang.org/x/sync
|
||||
- High performance
|
||||
- 100% test coverage of reachable code
|
||||
|
||||
## Example Usage
|
||||
|
||||
@@ -29,7 +29,7 @@ import (
|
||||
"log"
|
||||
"net"
|
||||
|
||||
"github.com/jackc/puddle/v2"
|
||||
"github.com/andoma-go/puddle/v2"
|
||||
)
|
||||
|
||||
func main() {
|
||||
@@ -67,9 +67,9 @@ func main() {
|
||||
|
||||
Puddle is stable and feature complete.
|
||||
|
||||
* Bug reports and fixes are welcome.
|
||||
* New features will usually not be accepted if they can be feasibly implemented in a wrapper.
|
||||
* Performance optimizations will usually not be accepted unless the performance issue rises to the level of a bug.
|
||||
- Bug reports and fixes are welcome.
|
||||
- New features will usually not be accepted if they can be feasibly implemented in a wrapper.
|
||||
- Performance optimizations will usually not be accepted unless the performance issue rises to the level of a bug.
|
||||
|
||||
## Supported Go Versions
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
module github.com/jackc/puddle/v2
|
||||
module github.com/andoma-go/puddle/v2
|
||||
|
||||
go 1.19
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/jackc/puddle/v2/internal/genstack"
|
||||
"github.com/andoma-go/puddle/v2/internal/genstack"
|
||||
"golang.org/x/sync/semaphore"
|
||||
)
|
||||
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/jackc/puddle/v2"
|
||||
"github.com/andoma-go/puddle/v2"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"golang.org/x/sync/semaphore"
|
||||
|
||||
Reference in New Issue
Block a user