Skip to content

Commit

Permalink
Merge pull request #375 from dajiaji/refine-dependencies-for-bun-test
Browse files Browse the repository at this point in the history
Refine dependencies for bun test.
  • Loading branch information
dajiaji authored Sep 1, 2024
2 parents de2e63d + 8ff8d1e commit 6ce81e7
Show file tree
Hide file tree
Showing 15 changed files with 13 additions and 14 deletions.
Binary file modified x/chacha20poly1305/test/runtimes/bun/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions x/chacha20poly1305/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/chacha20poly1305": "file:../../../../../npm-packages/x/chacha20poly1305/hpke-chacha20poly1305-1.3.0.tgz",
"@hpke/core": "file:../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz"
"@hpke/chacha20poly1305": "^1.3.0",
"@hpke/core": "^1.3.0"
}
}
Binary file modified x/core/test/runtimes/bun/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion x/core/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/core": "file:../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz"
"@hpke/core": "^1.3.0"
}
}
Binary file modified x/dhkem-secp256k1/test/runtimes/bun/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions x/dhkem-secp256k1/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/core": "../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz",
"@hpke/dhkem-secp256k1": "../../../../../npm-packages/x/dhkem-secp256k1/hpke-dhkem-secp256k1-1.3.0.tgz"
"@hpke/core": "^1.3.0",
"@hpke/dhkem-secp256k1": "^1.3.0"
}
}
Binary file modified x/dhkem-x25519/test/runtimes/bun/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions x/dhkem-x25519/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/core": "file:../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz",
"@hpke/dhkem-x25519": "file:../../../../../npm-packages/x/dhkem-x25519/hpke-dhkem-x25519-1.3.0.tgz"
"@hpke/core": "^1.3.0",
"@hpke/dhkem-x25519": "^1.3.0"
}
}
Binary file modified x/dhkem-x448/test/runtimes/bun/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions x/dhkem-x448/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/core": "file:../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz",
"@hpke/dhkem-x448": "file:../../../../../npm-packages/x/dhkem-x448/hpke-dhkem-x448-1.3.0.tgz"
"@hpke/core": "^1.3.0",
"@hpke/dhkem-x448": "^1.3.0"
}
}
Binary file modified x/hpke-js/test/runtimes/bun/bun.lockb
Binary file not shown.
3 changes: 1 addition & 2 deletions x/hpke-js/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/hpke-js": "file:../../../../../npm-packages/x/hpke-js/hpke-js-1.3.0.tgz",
"@hpke/core": "file:../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz"
"hpke-js": "^1.3.0"
}
}
2 changes: 1 addition & 1 deletion x/hpke-js/test/runtimes/bun/src/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CipherSuite } from "@hpke/hpke-js";
import { CipherSuite } from "hpke-js";

export async function testServer(request: Request): Promise<Response> {
const url = new URL(request.url);
Expand Down
Binary file modified x/hybridkem-x25519-kyber768/test/runtimes/bun/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions x/hybridkem-x25519-kyber768/test/runtimes/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@hpke/core": "file:../../../../../npm-packages/x/core/hpke-core-1.3.0.tgz",
"@hpke/hybridkem-x25519-kyber768": "file:../../../../../npm-packages/x/hybridkem-x25519-kyber768/hpke-hybridkem-x25519-kyber768-1.3.0.tgz"
"@hpke/core": "^1.3.0",
"@hpke/hybridkem-x25519-kyber768": "^1.3.0"
}
}

0 comments on commit 6ce81e7

Please sign in to comment.