Skip to content

Commit db6feda

Browse files
authored
go.mod: fix package name (#7)
the package was moved but the reference was not updated. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
1 parent 92c01de commit db6feda

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A Go implementation of JSON-RPC 2.0 with file descriptor passing over Unix domain sockets.
44

5-
This library implements the protocol specified in [jsonrpc-fdpass](https://github.com/cgwalters/jsonrpc-fdpass).
5+
This library implements the protocol specified in [jsonrpc-fdpass](https://github.com/bootc-dev/jsonrpc-fdpass).
66

77
## Protocol Overview
88

@@ -18,7 +18,7 @@ layer defines the semantic mapping between FD positions and parameters.
1818
## Installation
1919

2020
```bash
21-
go get github.com/cgwalters/jsonrpc-fdpass-go
21+
go get github.com/bootc-dev/jsonrpc-fdpass-go
2222
```
2323

2424
## Usage
@@ -30,7 +30,7 @@ import (
3030
"net"
3131
"os"
3232

33-
fdpass "github.com/cgwalters/jsonrpc-fdpass-go"
33+
fdpass "github.com/bootc-dev/jsonrpc-fdpass-go"
3434
)
3535

3636
func main() {

examples/echo/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"net"
1414
"os"
1515

16-
fdpass "github.com/cgwalters/jsonrpc-fdpass-go"
16+
fdpass "github.com/bootc-dev/jsonrpc-fdpass-go"
1717
)
1818

1919
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cgwalters/jsonrpc-fdpass-go
1+
module github.com/bootc-dev/jsonrpc-fdpass-go
22

33
go 1.21
44

tests-integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
jsonrpc-fdpass = { git = "https://github.com/cgwalters/jsonrpc-fdpass" }
8+
jsonrpc-fdpass = { git = "https://github.com/bootc-dev/jsonrpc-fdpass" }
99
tokio = { version = "1", features = ["full"] }
1010
serde_json = "1"
1111
tempfile = "3"

tests-integration/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
fdpass "github.com/cgwalters/jsonrpc-fdpass-go"
12+
fdpass "github.com/bootc-dev/jsonrpc-fdpass-go"
1313
)
1414

1515
const testServerBinary = "target/debug/test-server"

0 commit comments

Comments
 (0)