summaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2026-02-14 08:21:01 -0800
committerbndw <ben@bdw.to>2026-02-14 08:21:01 -0800
commit0406e24e1259e1a9adcd739da388dcca9ec8feba (patch)
treea7a0d5b88ddbad604b18fe31a00db37d8ef307ef /go.mod
parent1527a7313ca46cd646737fb05c33908fba034df9 (diff)
refactor: rename project from nostr-grpc to muxstr
Update module path from northwest.io/nostr-grpc to northwest.io/muxstr. This includes updating all Go imports, protobuf definitions, generated files, and documentation.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod6
1 files changed, 3 insertions, 3 deletions
diff --git a/go.mod b/go.mod
index a291cec..c69f481 100644
--- a/go.mod
+++ b/go.mod
@@ -1,17 +1,18 @@
1module northwest.io/nostr-grpc 1module northwest.io/muxstr
2 2
3go 1.24.0 3go 1.24.0
4 4
5require ( 5require (
6 connectrpc.com/connect v1.19.1
6 github.com/btcsuite/btcd/btcec/v2 v2.3.2 7 github.com/btcsuite/btcd/btcec/v2 v2.3.2
7 github.com/klauspost/compress v1.18.4 8 github.com/klauspost/compress v1.18.4
9 golang.org/x/net v0.50.0
8 google.golang.org/grpc v1.79.1 10 google.golang.org/grpc v1.79.1
9 google.golang.org/protobuf v1.36.11 11 google.golang.org/protobuf v1.36.11
10 modernc.org/sqlite v1.45.0 12 modernc.org/sqlite v1.45.0
11) 13)
12 14
13require ( 15require (
14 connectrpc.com/connect v1.19.1 // indirect
15 github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect 16 github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect
16 github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect 17 github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
17 github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect 18 github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
@@ -21,7 +22,6 @@ require (
21 github.com/ncruces/go-strftime v1.0.0 // indirect 22 github.com/ncruces/go-strftime v1.0.0 // indirect
22 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect 23 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
23 golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect 24 golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
24 golang.org/x/net v0.50.0 // indirect
25 golang.org/x/sys v0.41.0 // indirect 25 golang.org/x/sys v0.41.0 // indirect
26 golang.org/x/text v0.34.0 // indirect 26 golang.org/x/text v0.34.0 // indirect
27 google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect 27 google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect