Skip to content

Commit

Permalink
build(deps): remove rollup (#224)
Browse files Browse the repository at this point in the history
* build(deps): remove rollup

* fix: fix clippy error
  • Loading branch information
afonsobarracha authored Sep 26, 2024
1 parent 141b7e3 commit 58519e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
3 changes: 1 addition & 2 deletions src/schemes/bbs/core/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ impl Signature {
/// <https://identity.foundation/bbs-signature/draft-bbs-signatures.html#section-3.3.4>
/// Security Warning: `SK` and `PK` paramters must be related key-pair
/// generated using `KeyPair` APIs.

pub fn new<T, M, G, C>(
SK: &SecretKey,
PK: &PublicKey,
Expand Down Expand Up @@ -437,7 +436,7 @@ impl Signature {
/// SCALAR_SIZE, size of a `Scalar`
/// For BLS12-381 based implementation, G1_COMPRESSED_SIZE is 48 byes, and
/// SCALAR_SIZE is 32 bytes, then bytes sequence will be treated as
/// [48, 32, 32] to represent (A, e, s).
/// [48, 32, 32] to represent (A, e, s).
pub fn from_octets(data: &[u8; Self::SIZE_BYTES]) -> Result<Self, Error> {
let mut offset = 0;
let mut end = Self::G1_COMPRESSED_SIZE;
Expand Down
3 changes: 1 addition & 2 deletions wrappers/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,11 @@
"prettier": "2.0.4",
"pretty-quick": "2.0.1",
"require-all": "^3.0.0",
"rollup": "2.66.1",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.5.5"
},
"resolutions": {
"semver": "7.5.2"
}
}
}
9 changes: 1 addition & 8 deletions wrappers/wasm/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ fs.realpath@^1.0.0:
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==

fsevents@^2.3.2, fsevents@~2.3.2:
fsevents@^2.3.2:
version "2.3.2"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
Expand Down Expand Up @@ -2888,13 +2888,6 @@ rimraf@^3.0.0:
dependencies:
glob "^7.1.3"

[email protected]:
version "2.66.1"
resolved "https://registry.npmjs.org/rollup/-/rollup-2.66.1.tgz"
integrity sha512-crSgLhSkLMnKr4s9iZ/1qJCplgAgrRY+igWv8KhG/AjKOJ0YX/WpmANyn8oxrw+zenF3BXWDLa7Xl/QZISH+7w==
optionalDependencies:
fsevents "~2.3.2"

safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
Expand Down

0 comments on commit 58519e5

Please sign in to comment.