Skip to content

Commit

Permalink
deps: swap go-ipfs for kubo (#154)
Browse files Browse the repository at this point in the history
Kubo is the new name for go-ipfs
  • Loading branch information
achingbrain authored Oct 9, 2023
1 parent 5be8902 commit 0e3ca6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .aegir.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createServer } from 'ipfsd-ctl'
import * as ipfsHttpModule from 'kubo-rpc-client'
import goIpfsModule from 'go-ipfs'
import goIpfsModule from 'kubo'

let server

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@
"devDependencies": {
"@libp2p/peer-id-factory": "^3.0.3",
"aegir": "^41.0.3",
"go-ipfs": "^0.22.0",
"ipfsd-ctl": "^13.0.0",
"it-all": "^3.0.3",
"it-drain": "^3.0.3",
"kubo": "^0.23.0",
"kubo-rpc-client": "^3.0.1",
"uint8arrays": "^4.0.6",
"wherearewe": "^2.0.1"
},
"browser": {
"go-ipfs": false
"kubo": false
}
}
2 changes: 1 addition & 1 deletion test/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { stop } from '@libp2p/interfaces/startable'
import { peerIdFromString } from '@libp2p/peer-id'
import { createEd25519PeerId } from '@libp2p/peer-id-factory'
import { expect } from 'aegir/chai'
import goIpfs from 'go-ipfs'
import { type Controller, createFactory } from 'ipfsd-ctl'
import all from 'it-all'
import drain from 'it-drain'
import goIpfs from 'kubo'
import { create, type Options, CID as IPFSCID } from 'kubo-rpc-client'
import { CID } from 'multiformats/cid'
import pDefer from 'p-defer'
Expand Down

0 comments on commit 0e3ca6c

Please sign in to comment.