Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): remove rollup #224

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading