Skip to content

Commit 536cd11

Browse files
Bumped documentation & installation docs. (#1993)
Co-authored-by: lidel@users.noreply.github.com <lidel>
1 parent fffde5e commit 536cd11

File tree

6 files changed

+76
-76
lines changed

6 files changed

+76
-76
lines changed

docs/install/command-line.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Kubo
33
description: Using IPFS Kubo through the command-line allows you to do everything that IPFS Desktop can do, but at a more granular level, since you can specify which commands to run. Learn how to install it here.
4-
current-ipfs-version: v0.33.1
4+
current-ipfs-version: v0.33.2
55
---
66

77
# Install IPFS Kubo
@@ -31,7 +31,7 @@ Kubo runs on most Windows, MacOS, Linux, FreeBSD and OpenBSD systems that meet t
3131

3232
Note the following:
3333
- The amount of disk space your IPFS installation uses depends on how much data you're sharing. A base installation uses around 12MB of disk space.
34-
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.33.1/docs/config.md#datastorestoragemax) for data retrieved from other peers.
34+
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.33.2/docs/config.md#datastorestoragemax) for data retrieved from other peers.
3535

3636

3737
<!-- TODO: hide this footgun until https://github.com/ipfs/kubo/pull/10524 is merged and released in stable kubo
@@ -76,27 +76,27 @@ For installation instructions for your operating system, select the appropriate
7676
1. Download the Windows binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
7777

7878
```powershell
79-
wget https://dist.ipfs.tech/kubo/v0.33.1/kubo_v0.33.1_windows-amd64.zip -Outfile kubo_v0.33.1.zip
79+
wget https://dist.ipfs.tech/kubo/v0.33.2/kubo_v0.33.2_windows-amd64.zip -Outfile kubo_v0.33.2.zip
8080
```
8181

82-
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.33.1`.
82+
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.33.2`.
8383

8484
```powershell
85-
Expand-Archive -Path kubo_v0.33.1.zip -DestinationPath ~\Apps\kubo_v0.33.1
85+
Expand-Archive -Path kubo_v0.33.2.zip -DestinationPath ~\Apps\kubo_v0.33.2
8686
```
8787

88-
1. Move into the `kubo_v0.33.1` folder
88+
1. Move into the `kubo_v0.33.2` folder
8989

9090
```powershell
91-
cd ~\Apps\kubo_v0.33.1\kubo
91+
cd ~\Apps\kubo_v0.33.2\kubo
9292
```
9393

9494
1. Check that the `ipfs.exe` works:
9595

9696
```powershell
9797
.\ipfs.exe --version
9898
99-
> ipfs version 0.33.1
99+
> ipfs version 0.33.2
100100
```
101101

102102
At this point, Kubo is usable. However, it's strongly recommended that you first add `ipfs.exe` to your `PATH` using the following steps:
@@ -142,7 +142,7 @@ For installation instructions for your operating system, select the appropriate
142142
```powershell
143143
ipfs --version
144144
145-
> ipfs version 0.33.1
145+
> ipfs version 0.33.2
146146
```
147147

148148
:::
@@ -170,7 +170,7 @@ For installation instructions for your operating system, select the appropriate
170170
If Kubo is installed, the version number displays. For example:
171171

172172
```bash
173-
> ipfs version 0.33.1
173+
> ipfs version 0.33.2
174174
```
175175
:::
176176

@@ -181,13 +181,13 @@ For installation instructions for your operating system, select the appropriate
181181
1. Download the Linux binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
182182

183183
```bash
184-
wget https://dist.ipfs.tech/kubo/v0.33.1/kubo_v0.33.1_linux-amd64.tar.gz
184+
wget https://dist.ipfs.tech/kubo/v0.33.2/kubo_v0.33.2_linux-amd64.tar.gz
185185
```
186186

187187
1. Unzip the file:
188188

189189
```bash
190-
tar -xvzf kubo_v0.33.1_linux-amd64.tar.gz
190+
tar -xvzf kubo_v0.33.2_linux-amd64.tar.gz
191191

192192
> x kubo/install.sh
193193
> x kubo/ipfs
@@ -216,7 +216,7 @@ For installation instructions for your operating system, select the appropriate
216216
```bash
217217
ipfs --version
218218

219-
> ipfs version 0.33.1
219+
> ipfs version 0.33.2
220220
```
221221

222222
:::
@@ -228,13 +228,13 @@ For installation instructions for your operating system, select the appropriate
228228
1. Download the FreeBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
229229

230230
```bash
231-
wget https://dist.ipfs.tech/kubo/v0.33.1/kubo_v0.33.1_freebsd-amd64.tar.gz
231+
wget https://dist.ipfs.tech/kubo/v0.33.2/kubo_v0.33.2_freebsd-amd64.tar.gz
232232
```
233233

234234
1. Unzip the file:
235235

236236
```bash
237-
tar -xvzf kubo_v0.33.1_freebsd-amd64.tar.gz
237+
tar -xvzf kubo_v0.33.2_freebsd-amd64.tar.gz
238238

239239
> x kubo/install.sh
240240
> x kubo/ipfs
@@ -263,7 +263,7 @@ For installation instructions for your operating system, select the appropriate
263263
```bash
264264
ipfs --version
265265

266-
> ipfs version 0.33.1
266+
> ipfs version 0.33.2
267267
```
268268

269269
:::
@@ -275,13 +275,13 @@ For installation instructions for your operating system, select the appropriate
275275
1. Download the OpenBSD binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
276276

277277
```bash
278-
wget https://dist.ipfs.tech/kubo/v0.33.1/kubo_v0.33.1_openbsd-amd64.tar.gz
278+
wget https://dist.ipfs.tech/kubo/v0.33.2/kubo_v0.33.2_openbsd-amd64.tar.gz
279279
```
280280

281281
1. Unzip the file:
282282

283283
```bash
284-
tar -xvzf kubo_v0.33.1_openbsd-amd64.tar.gz
284+
tar -xvzf kubo_v0.33.2_openbsd-amd64.tar.gz
285285

286286
> x kubo/install.sh
287287
> x kubo/ipfs
@@ -310,7 +310,7 @@ For installation instructions for your operating system, select the appropriate
310310
```bash
311311
ipfs --version
312312

313-
> ipfs version 0.33.1
313+
> ipfs version 0.33.2
314314
```
315315

316316
:::
@@ -322,7 +322,7 @@ For installation instructions for your operating system, select the appropriate
322322

323323
## Build Kubo from source
324324

325-
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.33.1/README.md#build-from-source) section in the Kubo repository.
325+
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.33.2/README.md#build-from-source) section in the Kubo repository.
326326

327327
## Determining which node to use with the command line
328328

docs/install/run-ipfs-inside-docker.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Install IPFS Kubo inside Docker
33
description: You can run IPFS inside Docker to simplify your deployment processes, and horizontally scale your IPFS infrastructure.
4-
current-ipfs-version: v0.33.1
4+
current-ipfs-version: v0.33.2
55
---
66

77
# Install IPFS Kubo inside Docker
@@ -21,7 +21,7 @@ You can run Kubo IPFS inside Docker to simplify your deployment processes, as we
2121
1. Start a container running ipfs and expose ports `4001` (P2P TCP/QUIC transports), `5001` (RPC API) and `8080` (Gateway):
2222

2323
```shell
24-
docker run -d --name ipfs_host -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.1
24+
docker run -d --name ipfs_host -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.2
2525
```
2626

2727
::: danger NEVER EXPOSE THE RPC API TO THE PUBLIC INTERNET
@@ -71,7 +71,7 @@ You can run Kubo IPFS inside Docker to simplify your deployment processes, as we
7171
When starting a container running ipfs for the first time with an empty data directory, it will call `ipfs init` to initialize configuration files and generate a new keypair. At this time, you can choose which profile to apply using the `IPFS_PROFILE` environment variable:
7272

7373
```shell
74-
docker run -d --name ipfs_host -e IPFS_PROFILE=server -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.1
74+
docker run -d --name ipfs_host -e IPFS_PROFILE=server -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.2
7575
```
7676

7777
## Customizing your node
@@ -119,22 +119,22 @@ Example:
119119
docker run # (....)
120120
--cpus="4.0" -e GOMAXPROCS=4 \
121121
--memory="8000m" -e GOMEMLIMIT=7500MiB \
122-
ipfs/kubo:v0.33.1
122+
ipfs/kubo:v0.33.2
123123
```
124124

125125
## Private swarms inside Docker
126126

127127
It is possible to initialize the container with a swarm key file (`/data/ipfs/swarm.key`) using the variables `IPFS_SWARM_KEY` and `IPFS_SWARM_KEY_FILE`. The `IPFS_SWARM_KEY` creates `swarm.key` with the contents of the variable itself, while `IPFS_SWARM_KEY_FILE` copies the key from a path stored in the variable. The `IPFS_SWARM_KEY_FILE` **overwrites** the key generated by `IPFS_SWARM_KEY`.
128128

129129
```shell
130-
docker run -d --name ipfs_host -e IPFS_SWARM_KEY=<your swarm key> -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.1
130+
docker run -d --name ipfs_host -e IPFS_SWARM_KEY=<your swarm key> -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.2
131131
```
132132

133133
The swarm key initialization can also be done using docker secrets, and requires `docker swarm` or `docker-compose`:
134134

135135
```shell
136136
cat your_swarm.key | docker secret create swarm_key_secret -
137-
docker run -d --name ipfs_host --secret swarm_key_secret -e IPFS_SWARM_KEY_FILE=/run/secrets/swarm_key_secret -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.1
137+
docker run -d --name ipfs_host --secret swarm_key_secret -e IPFS_SWARM_KEY_FILE=/run/secrets/swarm_key_secret -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 4001:4001 -p 4001:4001/udp -p 127.0.0.1:8080:8080 -p 127.0.0.1:5001:5001 ipfs/kubo:v0.33.2
138138
```
139139

140140
## Key rotation inside Docker
@@ -143,10 +143,10 @@ It is possible to do key rotation in an ephemeral container that is temporarily
143143

144144
```shell
145145
# given container named 'ipfs-test' that persists repo at /path/to/persisted/.ipfs
146-
docker run -d --name ipfs-test -v /path/to/persisted/.ipfs:/data/ipfs ipfs/kubo:v0.33.1
146+
docker run -d --name ipfs-test -v /path/to/persisted/.ipfs:/data/ipfs ipfs/kubo:v0.33.2
147147
docker stop ipfs-test
148148
149149
# key rotation works like this (old key saved under 'old-self')
150-
docker run --rm -it -v /path/to/persisted/.ipfs:/data/ipfs ipfs/kubo:v0.33.1 key rotate -o old-self -t ed25519
150+
docker run --rm -it -v /path/to/persisted/.ipfs:/data/ipfs ipfs/kubo:v0.33.2 key rotate -o old-self -t ed25519
151151
docker start ipfs-test # will start with the new key
152152
```

docs/reference/kubo/cli.md

+40-40
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description: API documentation for the Kubo command-line executable.
55

66
# Kubo command-line
77

8-
::: tip Generated on 2025-02-04 22:02:31, from kubo 0.33.1
9-
This document was autogenerated from CLI help text in [kubo 0.33.1](https://github.com/ipfs/kubo/releases/tag/v0.33.1)
8+
::: tip Generated on 2025-02-14 01:39:37, from kubo 0.33.2
9+
This document was autogenerated from CLI help text in [kubo 0.33.2](https://github.com/ipfs/kubo/releases/tag/v0.33.2)
1010
For issues and support, check out the [generate-cli-docs.sh](https://github.com/ipfs/ipfs-docs/blob/main/docs/reference/kubo/generate-cli-docs.sh) script on GitHub.
1111
:::
1212

@@ -1092,14 +1092,9 @@ SYNOPSIS
10921092
DESCRIPTION
10931093
10941094
Available profiles:
1095-
'local-discovery':
1096-
Sets default values to fields affected by the server
1097-
profile, enables discovery in local networks.
10981095
'test':
10991096
Reduces external interference of IPFS daemon, this
11001097
is useful when using the daemon in test environments.
1101-
'announce-on':
1102-
Re-enables Reprovide system (reverts announce-off profile).
11031098
'flatfs':
11041099
Configures the node to use the flatfs datastore.
11051100
@@ -1120,27 +1115,6 @@ DESCRIPTION
11201115
NOTE: This profile may only be applied when first initializing node at IPFS_PATH
11211116
via 'ipfs init --profile flatfs'
11221117
1123-
'pebbleds':
1124-
Configures the node to use the pebble high-performance datastore.
1125-
1126-
Pebble is a LevelDB/RocksDB inspired key-value store focused on performance
1127-
and internal usage by CockroachDB.
1128-
You should use this datastore if:
1129-
1130-
- You need a datastore that is focused on performance.
1131-
- You need reliability by default, but may choose to disable WAL for maximum performance when reliability is not critical.
1132-
- This datastore is good for multi-terabyte data sets.
1133-
- May benefit from tuning depending on read/write patterns and throughput.
1134-
- Performance is helped significantly by running on a system with plenty of memory.
1135-
1136-
See configuration documentation at:
1137-
https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds
1138-
1139-
NOTE: This profile may only be applied when first initializing node at IPFS_PATH
1140-
via 'ipfs init --profile pebbleds'
1141-
1142-
'randomports':
1143-
Use a random port number for swarm.
11441118
'announce-off':
11451119
Disables Reprovide system (and announcing to Amino DHT).
11461120
@@ -1150,26 +1124,47 @@ DESCRIPTION
11501124
DHT-based routing and data retrieval impossible if this node is the only
11511125
one hosting it, and other peers are not already connected to it.
11521126
1153-
'legacy-cid-v0':
1154-
Makes UnixFS import produce legacy CIDv0 with no raw leaves, sha2-256 and 256 KiB chunks.
1155-
'server':
1156-
Disables local host discovery, recommended when
1157-
running IPFS on machines with public IPv4 addresses.
1127+
'announce-on':
1128+
Re-enables Reprovide system (reverts announce-off profile).
1129+
'randomports':
1130+
Use a random port number for swarm.
11581131
'default-networking':
11591132
Restores default network settings.
11601133
Inverse profile of the test profile.
1161-
'lowpower':
1162-
Reduces daemon overhead on the system. May affect node
1163-
functionality - performance of content discovery and data
1164-
fetching may be degraded.
1165-
11661134
'default-datastore':
11671135
Configures the node to use the default datastore (flatfs).
11681136
11691137
Read the "flatfs" profile description for more information on this datastore.
11701138
11711139
This profile may only be applied when first initializing the node.
11721140
1141+
'test-cid-v1':
1142+
Makes UnixFS import produce modern CIDv1 with raw leaves, sha2-256 and 1 MiB chunks.
1143+
'server':
1144+
Disables local host discovery, recommended when
1145+
running IPFS on machines with public IPv4 addresses.
1146+
'local-discovery':
1147+
Sets default values to fields affected by the server
1148+
profile, enables discovery in local networks.
1149+
'pebbleds':
1150+
Configures the node to use the pebble high-performance datastore.
1151+
1152+
Pebble is a LevelDB/RocksDB inspired key-value store focused on performance
1153+
and internal usage by CockroachDB.
1154+
You should use this datastore if:
1155+
1156+
- You need a datastore that is focused on performance.
1157+
- You need reliability by default, but may choose to disable WAL for maximum performance when reliability is not critical.
1158+
- This datastore is good for multi-terabyte data sets.
1159+
- May benefit from tuning depending on read/write patterns and throughput.
1160+
- Performance is helped significantly by running on a system with plenty of memory.
1161+
1162+
See configuration documentation at:
1163+
https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds
1164+
1165+
NOTE: This profile may only be applied when first initializing node at IPFS_PATH
1166+
via 'ipfs init --profile pebbleds'
1167+
11731168
'badgerds':
11741169
Configures the node to use the legacy badgerv1 datastore.
11751170
@@ -1192,8 +1187,13 @@ DESCRIPTION
11921187
NOTE: This profile may only be applied when first initializing node at IPFS_PATH
11931188
via 'ipfs init --profile badgerds'
11941189
1195-
'test-cid-v1':
1196-
Makes UnixFS import produce modern CIDv1 with raw leaves, sha2-256 and 1 MiB chunks.
1190+
'lowpower':
1191+
Reduces daemon overhead on the system. May affect node
1192+
functionality - performance of content discovery and data
1193+
fetching may be degraded.
1194+
1195+
'legacy-cid-v0':
1196+
Makes UnixFS import produce legacy CIDv0 with no raw leaves, sha2-256 and 256 KiB chunks.
11971197
11981198
SUBCOMMANDS
11991199
ipfs config profile apply <profile> - Apply profile to config.

docs/reference/kubo/rpc.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ I AM SERIOUS, DO NOT EDIT ANYTHING BELOW ;-D
4747
4848
-->
4949

50-
::: tip Generated on 2025-02-04, from kubo v0.33.1
51-
This document was autogenerated from [v0.33.1](https://github.com/ipfs/kubo/releases/tag/v0.33.1).
50+
::: tip Generated on 2025-02-14, from kubo v0.33.2
51+
This document was autogenerated from [v0.33.2](https://github.com/ipfs/kubo/releases/tag/v0.33.2).
5252
For issues and support, check out the [http-api-docs](https://github.com/ipfs/ipfs-docs/tree/main/tools/http-api-docs) generator on GitHub.
5353
:::
5454

tools/http-api-docs/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require (
66
github.com/Stebalien/go-json-doc v0.0.2
77
github.com/ipfs/go-cid v0.4.1
88
github.com/ipfs/go-ipfs-cmds v0.14.1
9-
github.com/ipfs/kubo v0.33.1
10-
github.com/libp2p/go-libp2p v0.38.2
9+
github.com/ipfs/kubo v0.33.2
10+
github.com/libp2p/go-libp2p v0.38.3
1111
github.com/multiformats/go-multiaddr v0.14.0
1212
)
1313

tools/http-api-docs/go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,8 @@ github.com/ipfs/go-unixfsnode v1.9.2 h1:0A12BYs4XOtDPJTMlwmNPlllDfqcc4yie4e919hc
409409
github.com/ipfs/go-unixfsnode v1.9.2/go.mod h1:v1nuMFHf4QTIhFUdPMvg1nQu7AqDLvIdwyvJ531Ot1U=
410410
github.com/ipfs/go-verifcid v0.0.3 h1:gmRKccqhWDocCRkC+a59g5QW7uJw5bpX9HWBevXa0zs=
411411
github.com/ipfs/go-verifcid v0.0.3/go.mod h1:gcCtGniVzelKrbk9ooUSX/pM3xlH73fZZJDzQJRvOUw=
412-
github.com/ipfs/kubo v0.33.1 h1:dvc1o7j//9HAKjZg1d1ODSPVxmUn5YR7Ut5JPnR+H+Q=
413-
github.com/ipfs/kubo v0.33.1/go.mod h1:qc3gVRqjx5y9mPvsEz+CO5nc1mXvy4r9Etvqga2lnMo=
412+
github.com/ipfs/kubo v0.33.2 h1:lHB3FhXk9yFjCiYNTNLqOjlUy7WWrIFQzVvOkJg0Ohg=
413+
github.com/ipfs/kubo v0.33.2/go.mod h1:Ie+fLMp88GbFt1K3xjG6sxfzXwoAYlYRMM/DFHtYf8I=
414414
github.com/ipld/go-car v0.6.2 h1:Hlnl3Awgnq8icK+ze3iRghk805lu8YNq3wlREDTF2qc=
415415
github.com/ipld/go-car v0.6.2/go.mod h1:oEGXdwp6bmxJCZ+rARSkDliTeYnVzv3++eXajZ+Bmr8=
416416
github.com/ipld/go-car/v2 v2.14.2 h1:9ERr7KXpCC7If0rChZLhYDlyr6Bes6yRKPJnCO3hdHY=
@@ -480,8 +480,8 @@ github.com/libp2p/go-flow-metrics v0.0.1/go.mod h1:Iv1GH0sG8DtYN3SVJ2eG221wMiNpZ
480480
github.com/libp2p/go-flow-metrics v0.0.3/go.mod h1:HeoSNUrOJVK1jEpDqVEiUOIXqhbnS27omG0uWU5slZs=
481481
github.com/libp2p/go-flow-metrics v0.2.0 h1:EIZzjmeOE6c8Dav0sNv35vhZxATIXWZg6j/C08XmmDw=
482482
github.com/libp2p/go-flow-metrics v0.2.0/go.mod h1:st3qqfu8+pMfh+9Mzqb2GTiwrAGjIPszEjZmtksN8Jc=
483-
github.com/libp2p/go-libp2p v0.38.2 h1:9SZQDOCi82A25An4kx30lEtr6kGTxrtoaDkbs5xrK5k=
484-
github.com/libp2p/go-libp2p v0.38.2/go.mod h1:QWV4zGL3O9nXKdHirIC59DoRcZ446dfkjbOJ55NEWFo=
483+
github.com/libp2p/go-libp2p v0.38.3 h1:80lm2PNwBMIFFnkSd6QGaqeKpxFrkGTRHB4AlNxLVR8=
484+
github.com/libp2p/go-libp2p v0.38.3/go.mod h1:QWV4zGL3O9nXKdHirIC59DoRcZ446dfkjbOJ55NEWFo=
485485
github.com/libp2p/go-libp2p-asn-util v0.4.1 h1:xqL7++IKD9TBFMgnLPZR6/6iYhawHKHl950SO9L6n94=
486486
github.com/libp2p/go-libp2p-asn-util v0.4.1/go.mod h1:d/NI6XZ9qxw67b4e+NgpQexCIiFYJjErASrYW4PFDN8=
487487
github.com/libp2p/go-libp2p-core v0.2.4/go.mod h1:STh4fdfa5vDYr0/SzYYeqnt+E6KfEV5VxfIrm0bcI0g=

0 commit comments

Comments
 (0)