Skip to content

Commit ef3ba5c

Browse files
author
galargh@users.noreply.github.com
committed
Bumped documentation & installation docs.
1 parent 82da951 commit ef3ba5c

File tree

6 files changed

+67
-66
lines changed

6 files changed

+67
-66
lines changed

docs/install/command-line.md

Lines changed: 27 additions & 27 deletions
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.18.0
4+
current-ipfs-version: v0.18.1
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.18.0/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.18.1/docs/config.md#datastorestoragemax) for data retrieved from other peers.
3535

3636
### Kubo on resource-constrained systems
3737

@@ -72,27 +72,27 @@ For installation instructions for your operating system, select the appropriate
7272
1. Download the Windows binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
7373

7474
```powershell
75-
wget https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_windows-amd64.zip -Outfile kubo_v0.18.0.zip
75+
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_windows-amd64.zip -Outfile kubo_v0.18.1.zip
7676
```
7777

78-
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.18.0`.
78+
1. Unzip the file to a sensible location, such as `~\Apps\kubo_v0.18.1`.
7979

8080
```powershell
81-
Expand-Archive -Path kubo_v0.18.0.zip -DestinationPath ~\Apps\kubo_v0.18.0
81+
Expand-Archive -Path kubo_v0.18.1.zip -DestinationPath ~\Apps\kubo_v0.18.1
8282
```
8383

84-
1. Move into the `kubo_v0.18.0` folder
84+
1. Move into the `kubo_v0.18.1` folder
8585

8686
```powershell
87-
cd ~\Apps\kubo_v0.18.0\kubo
87+
cd ~\Apps\kubo_v0.18.1\kubo
8888
```
8989

9090
1. Check that the `ipfs.exe` works:
9191

9292
```powershell
9393
.\ipfs.exe --version
9494
95-
> ipfs version 0.18.0
95+
> ipfs version 0.18.1
9696
```
9797

9898
At this point, Kubo is usable. However, it's strongly recommended that you first add `ipfs.exe` to your `PATH` using the following steps:
@@ -138,7 +138,7 @@ For installation instructions for your operating system, select the appropriate
138138
```powershell
139139
ipfs --version
140140
141-
> ipfs version 0.18.0
141+
> ipfs version 0.18.1
142142
```
143143

144144
:::
@@ -159,28 +159,28 @@ For installation instructions for your operating system, select the appropriate
159159
1. Download the appropriate macOS binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo) based on your hardware. For example:
160160

161161
```bash
162-
curl -O https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_darwin-amd64.tar.gz
162+
curl -O https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_darwin-amd64.tar.gz
163163
```
164164

165165
> :warning:
166166
> Ensure that you download and install the appropriate binary, as the binary for an Intel-based system won't work on a system with Apple Silicon, and vice-versa.
167167
168-
- _If you are using hardware with Apple Silicon, download the `darwin-arm64` binary._ For example, to download the IPFS binary for `Kubo v0.18.0` for an Apple-based system, run the following command:
168+
- _If you are using hardware with Apple Silicon, download the `darwin-arm64` binary._ For example, to download the IPFS binary for `Kubo v0.18.1` for an Apple-based system, run the following command:
169169

170170
```bash
171-
curl -O https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_darwin-arm64.tar.gz
171+
curl -O https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_darwin-arm64.tar.gz
172172
```
173173

174-
- _If you are using hardware with an Intel Processor, download the `darwin-amd64` binary._ For example, to download the IPFS binary for `Kubo v0.18.0` for an Intel-based system, run the following command:
174+
- _If you are using hardware with an Intel Processor, download the `darwin-amd64` binary._ For example, to download the IPFS binary for `Kubo v0.18.1` for an Intel-based system, run the following command:
175175

176176
```bash
177-
curl -O https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_darwin-amd64.tar.gz
177+
curl -O https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_darwin-amd64.tar.gz
178178
```
179179

180-
1. Unzip the file. For example, to unzip `Kubo v0.18.0` for an Intel-based system:
180+
1. Unzip the file. For example, to unzip `Kubo v0.18.1` for an Intel-based system:
181181

182182
```bash
183-
tar -xvzf kubo_v0.18.0_darwin-amd64.tar.gz
183+
tar -xvzf kubo_v0.18.1_darwin-amd64.tar.gz
184184
```
185185

186186
The following output displays:
@@ -218,7 +218,7 @@ For installation instructions for your operating system, select the appropriate
218218
If Kubo is installed, the version number displays. For example:
219219

220220
```bash
221-
> ipfs version 0.18.0
221+
> ipfs version 0.18.1
222222
```
223223

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

232232
```bash
233-
wget https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_linux-amd64.tar.gz
233+
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_linux-amd64.tar.gz
234234
```
235235

236236
1. Unzip the file:
237237

238238
```bash
239-
tar -xvzf kubo_v0.18.0_linux-amd64.tar.gz
239+
tar -xvzf kubo_v0.18.1_linux-amd64.tar.gz
240240
241241
> x kubo/install.sh
242242
> x kubo/ipfs
@@ -265,7 +265,7 @@ For installation instructions for your operating system, select the appropriate
265265
```bash
266266
ipfs --version
267267
268-
> ipfs version 0.18.0
268+
> ipfs version 0.18.1
269269
```
270270

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

279279
```bash
280-
wget https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_freebsd-amd64.tar.gz
280+
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_freebsd-amd64.tar.gz
281281
```
282282

283283
1. Unzip the file:
284284

285285
```bash
286-
tar -xvzf kubo_v0.18.0_freebsd-amd64.tar.gz
286+
tar -xvzf kubo_v0.18.1_freebsd-amd64.tar.gz
287287
288288
> x kubo/install.sh
289289
> x kubo/ipfs
@@ -312,7 +312,7 @@ For installation instructions for your operating system, select the appropriate
312312
```bash
313313
ipfs --version
314314
315-
> ipfs version 0.18.0
315+
> ipfs version 0.18.1
316316
```
317317

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

326326
```bash
327-
wget https://dist.ipfs.tech/kubo/v0.18.0/kubo_v0.18.0_openbsd-amd64.tar.gz
327+
wget https://dist.ipfs.tech/kubo/v0.18.1/kubo_v0.18.1_openbsd-amd64.tar.gz
328328
```
329329

330330
1. Unzip the file:
331331

332332
```bash
333-
tar -xvzf kubo_v0.18.0_openbsd-amd64.tar.gz
333+
tar -xvzf kubo_v0.18.1_openbsd-amd64.tar.gz
334334
335335
> x kubo/install.sh
336336
> x kubo/ipfs
@@ -359,7 +359,7 @@ For installation instructions for your operating system, select the appropriate
359359
```bash
360360
ipfs --version
361361
362-
> ipfs version 0.18.0
362+
> ipfs version 0.18.1
363363
```
364364

365365
:::
@@ -371,7 +371,7 @@ For installation instructions for your operating system, select the appropriate
371371

372372
## Build Kubo from source
373373

374-
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.18.0/README.md#build-from-source) section in the Kubo repository.
374+
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.18.1/README.md#build-from-source) section in the Kubo repository.
375375

376376
## Determining which node to use with the command line
377377

docs/install/server-infrastructure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: IPFS Cluster
33
description: IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating, and tracking a global pin-set distributed among multiple peers. Learn how to install it here.
4-
current-ipfs-cluster-version: v1.0.4
4+
current-ipfs-cluster-version: v1.0.5
55
---
66

77
# Set up server infrastructure with IPFS Cluster
@@ -73,13 +73,13 @@ If you're having issues installing or using Docker or Docker-Compose, see the [o
7373
1. Download the latest `ipfs-cluster-ctl` package from [dist.ipfs.tech](https://dist.ipfs.tech/#ipfs-cluster-ctl):
7474

7575
```shell
76-
wget https://dist.ipfs.tech/ipfs-cluster-ctl/v1.0.4/ipfs-cluster-ctl_v1.0.4_linux-amd64.tar.gz
76+
wget https://dist.ipfs.tech/ipfs-cluster-ctl/v1.0.5/ipfs-cluster-ctl_v1.0.5_linux-amd64.tar.gz
7777
```
7878

7979
1. Unzip the package:
8080

8181
```shell
82-
tar xvzf ipfs-cluster-ctl_v1.0.4_linux-amd64.tar.gz
82+
tar xvzf ipfs-cluster-ctl_v1.0.5_linux-amd64.tar.gz
8383
8484
> ipfs-cluster-ctl/ipfs-cluster-ctl
8585
> ipfs-cluster-ctl/LICENSE
@@ -88,10 +88,10 @@ If you're having issues installing or using Docker or Docker-Compose, see the [o
8888
> ipfs-cluster-ctl/README.md
8989
```
9090

91-
1. Download the [`docker-compose.yml` file](https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.4/docker-compose.yml) and place it into the `ipfs-cluster-ctl` directory:
91+
1. Download the [`docker-compose.yml` file](https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.5/docker-compose.yml) and place it into the `ipfs-cluster-ctl` directory:
9292

9393
```shell
94-
wget https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.4/docker-compose.yml
94+
wget https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.0.5/docker-compose.yml
9595
```
9696

9797
1. Start the cluster using `docker-compose`:

docs/reference/kubo/cli.md

Lines changed: 26 additions & 26 deletions
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 2023-01-24 05:33:54, from kubo 0.18.0
9-
This document was autogenerated from CLI help text in [kubo 0.18.0](https://github.com/ipfs/kubo/releases/tag/v0.18.0)
8+
::: tip Generated on 2023-01-30 16:32:45, from kubo 0.18.1
9+
This document was autogenerated from CLI help text in [kubo 0.18.1](https://github.com/ipfs/kubo/releases/tag/v0.18.1)
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

@@ -1044,22 +1044,9 @@ SYNOPSIS
10441044
DESCRIPTION
10451045
10461046
Available profiles:
1047-
'flatfs':
1048-
Configures the node to use the flatfs datastore.
1049-
1050-
This is the most battle-tested and reliable datastore.
1051-
You should use this datastore if:
1052-
1053-
* You need a very simple and very reliable datastore, and you trust your
1054-
filesystem. This datastore stores each block as a separate file in the
1055-
underlying filesystem so it's unlikely to loose data unless there's an issue
1056-
with the underlying file system.
1057-
* You need to run garbage collection in a way that reclaims free space as soon as possible.
1058-
* You want to minimize memory usage.
1059-
* You are ok with the default speed of data import, or prefer to use --nocopy.
1060-
1061-
This profile may only be applied when first initializing the node.
1062-
1047+
'default-networking':
1048+
Restores default network settings.
1049+
Inverse profile of the test profile.
10631050
'badgerds':
10641051
Configures the node to use the experimental badger datastore.
10651052
@@ -1083,24 +1070,37 @@ DESCRIPTION
10831070
functionality - performance of content discovery and data
10841071
fetching may be degraded.
10851072
1086-
'randomports':
1087-
Use a random port number for swarm.
1088-
'local-discovery':
1089-
Sets default values to fields affected by the server
1090-
profile, enables discovery in local networks.
10911073
'test':
10921074
Reduces external interference of IPFS daemon, this
10931075
is useful when using the daemon in test environments.
1094-
'default-networking':
1095-
Restores default network settings.
1096-
Inverse profile of the test profile.
1076+
'local-discovery':
1077+
Sets default values to fields affected by the server
1078+
profile, enables discovery in local networks.
10971079
'default-datastore':
10981080
Configures the node to use the default datastore (flatfs).
10991081
11001082
Read the "flatfs" profile description for more information on this datastore.
11011083
11021084
This profile may only be applied when first initializing the node.
11031085
1086+
'flatfs':
1087+
Configures the node to use the flatfs datastore.
1088+
1089+
This is the most battle-tested and reliable datastore.
1090+
You should use this datastore if:
1091+
1092+
* You need a very simple and very reliable datastore, and you trust your
1093+
filesystem. This datastore stores each block as a separate file in the
1094+
underlying filesystem so it's unlikely to loose data unless there's an issue
1095+
with the underlying file system.
1096+
* You need to run garbage collection in a way that reclaims free space as soon as possible.
1097+
* You want to minimize memory usage.
1098+
* You are ok with the default speed of data import, or prefer to use --nocopy.
1099+
1100+
This profile may only be applied when first initializing the node.
1101+
1102+
'randomports':
1103+
Use a random port number for swarm.
11041104
'server':
11051105
Disables local host discovery, recommended when
11061106
running IPFS on machines with public IPv4 addresses.

docs/reference/kubo/rpc.md

Lines changed: 2 additions & 2 deletions
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 2023-01-24, from kubo v0.18.0
51-
This document was autogenerated from [v0.18.0](https://github.com/ipfs/kubo/releases/tag/v0.18.0).
50+
::: tip Generated on 2023-01-30, from kubo v0.18.1
51+
This document was autogenerated from [v0.18.1](https://github.com/ipfs/kubo/releases/tag/v0.18.1).
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/Stebalien/go-json-doc v0.0.2
77
github.com/ipfs/go-cid v0.3.2
88
github.com/ipfs/go-ipfs-cmds v0.8.2
9-
github.com/ipfs/kubo v0.18.0
9+
github.com/ipfs/kubo v0.18.1
1010
github.com/libp2p/go-libp2p-core v0.20.1
1111
github.com/multiformats/go-multiaddr v0.8.0
1212
)

tools/http-api-docs/go.sum

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,8 @@ github.com/elastic/gosigar v0.14.2 h1:Dg80n8cr90OZ7x+bAax/QjoW/XqTI11RmA79ZwIm9/
222222
github.com/elastic/gosigar v0.14.2/go.mod h1:iXRIGg2tLnu7LBdpqzyQfGDEidKCfWcCMS0WKyPWoMs=
223223
github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302 h1:QV0ZrfBLpFc2KDk+a4LJefDczXnonRwrYrQJY/9L4dA=
224224
github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302/go.mod h1:qBlWZqWeVx9BjvqBsnC/8RUlAYpIFmPvgROcw0n1scE=
225+
github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
226+
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
225227
github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g=
226228
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
227229
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
@@ -665,8 +667,8 @@ github.com/ipfs/go-verifcid v0.0.2/go.mod h1:40cD9x1y4OWnFXbLNJYRe7MpNvWlMn3LZAG
665667
github.com/ipfs/interface-go-ipfs-core v0.8.0/go.mod h1:WYC2H6Mu7aGqhlupi/CVawcs0X1Me4uRvV0rcTlo3zM=
666668
github.com/ipfs/interface-go-ipfs-core v0.8.2 h1:WDeCBnE4MENVOXbtfwwdAPJ2nBBS8PTmhZWWpm24HRM=
667669
github.com/ipfs/interface-go-ipfs-core v0.8.2/go.mod h1:F3EcmDy53GFkF0H3iEJpfJC320fZ/4G60eftnItrrJ0=
668-
github.com/ipfs/kubo v0.18.0 h1:KKjZ6SiOhOtCeF9l+yzA1x/R4dWRmEtFdE43hKsbNt0=
669-
github.com/ipfs/kubo v0.18.0/go.mod h1:1msMoVNjXKWSmVJ/jZ8clsh9ZBUMFj/Df3csH2xE/kI=
670+
github.com/ipfs/kubo v0.18.1 h1:mF8n2toZkWRc1JXs4pGknqoDGJ9NfP+upy/a8OS3oNg=
671+
github.com/ipfs/kubo v0.18.1/go.mod h1:VNKTz0OcX28GvsJQSEAprbMqzlSO19f4esoeDX4ZJLQ=
670672
github.com/ipld/edelweiss v0.2.0 h1:KfAZBP8eeJtrLxLhi7r3N0cBCo7JmwSRhOJp3WSpNjk=
671673
github.com/ipld/edelweiss v0.2.0/go.mod h1:FJAzJRCep4iI8FOFlRriN9n0b7OuX3T/S9++NpBDmA4=
672674
github.com/ipld/go-car v0.4.0 h1:U6W7F1aKF/OJMHovnOVdst2cpQE5GhmHibQkAixgNcQ=
@@ -880,8 +882,8 @@ github.com/libp2p/go-libp2p-peerstore v0.2.6/go.mod h1:ss/TWTgHZTMpsU/oKVVPQCGuD
880882
github.com/libp2p/go-libp2p-peerstore v0.2.7/go.mod h1:ss/TWTgHZTMpsU/oKVVPQCGuDHItOpf2W8RxAi50P2s=
881883
github.com/libp2p/go-libp2p-pnet v0.2.0/go.mod h1:Qqvq6JH/oMZGwqs3N1Fqhv8NVhrdYcO0BW4wssv21LA=
882884
github.com/libp2p/go-libp2p-pubsub v0.8.1/go.mod h1:e4kT+DYjzPUYGZeWk4I+oxCSYTXizzXii5LDRRhjKSw=
883-
github.com/libp2p/go-libp2p-pubsub v0.8.2 h1:QLGUmkgKmwEVxVDYGsqc5t9CykOMY2Y21cXQHjR462I=
884-
github.com/libp2p/go-libp2p-pubsub v0.8.2/go.mod h1:e4kT+DYjzPUYGZeWk4I+oxCSYTXizzXii5LDRRhjKSw=
885+
github.com/libp2p/go-libp2p-pubsub v0.8.3 h1:T4+pcfcFm1K2v5oFyk68peSjVroaoM8zFygf6Y5WOww=
886+
github.com/libp2p/go-libp2p-pubsub v0.8.3/go.mod h1:eje970FXxjhtFbVEoiae+VUw24ZoSlk67BsiZPLRzlw=
885887
github.com/libp2p/go-libp2p-pubsub-router v0.6.0 h1:D30iKdlqDt5ZmLEYhHELCMRj8b4sFAqrUcshIUvVP/s=
886888
github.com/libp2p/go-libp2p-pubsub-router v0.6.0/go.mod h1:FY/q0/RBTKsLA7l4vqC2cbRbOvyDotg8PJQ7j8FDudE=
887889
github.com/libp2p/go-libp2p-quic-transport v0.10.0/go.mod h1:RfJbZ8IqXIhxBRm5hqUEJqjiiY8xmEuq3HUDS993MkA=
@@ -1468,7 +1470,6 @@ github.com/whyrusleeping/mdns v0.0.0-20180901202407-ef14215e6b30/go.mod h1:j4l84
14681470
github.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9/go.mod h1:j4l84WPFclQPj320J9gp0XwNKBb3U0zt5CBqjPp22G4=
14691471
github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7 h1:E9S12nwJwEOXe2d6gT6qxdvqMnNq+VnSsKPgm2ZZNds=
14701472
github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7/go.mod h1:X2c0RVCI1eSUFI8eLcY3c0423ykwiUdxLJtkDvruhjI=
1471-
github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee h1:lYbXeSvJi5zk5GLKVuid9TVjS9a0OmLIDKTfoZBL6Ow=
14721473
github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee/go.mod h1:m2aV4LZI4Aez7dP5PMyVKEHhUyEJ/RjmPEDOpDvudHg=
14731474
github.com/x-cray/logrus-prefixed-formatter v0.5.2/go.mod h1:2duySbKsL6M18s5GU7VPsoEPHyzalCE06qoARUCeBBE=
14741475
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=

0 commit comments

Comments
 (0)