bitfield@4

This commit is contained in:
Feross Aboukhadijeh 2020-11-03 09:36:31 -10:00
parent a19b83ad6d
commit adf80f9e31
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/*! ut_metadata. MIT License. WebTorrent LLC <https://webtorrent.io/opensource> */ /*! ut_metadata. MIT License. WebTorrent LLC <https://webtorrent.io/opensource> */
const { EventEmitter } = require('events') const { EventEmitter } = require('events')
const bencode = require('bencode') const bencode = require('bencode')
const BitField = require('bitfield') const BitField = require('bitfield').default
const debug = require('debug')('ut_metadata') const debug = require('debug')('ut_metadata')
const sha1 = require('simple-sha1') const sha1 = require('simple-sha1')

View File

@ -12,7 +12,7 @@
}, },
"dependencies": { "dependencies": {
"bencode": "^2.0.1", "bencode": "^2.0.1",
"bitfield": "^3.0.0", "bitfield": "^4.0.0",
"debug": "^4.2.0", "debug": "^4.2.0",
"simple-sha1": "^3.0.1" "simple-sha1": "^3.0.1"
}, },