chore: update partial ssl.rs to rcgen

This commit is contained in:
DecDuck
2025-03-20 16:24:26 +11:00
parent 5313622341
commit 3209bcd01d
6 changed files with 168 additions and 185 deletions

View File

@ -75,7 +75,7 @@ test("single large file", async (t) => {
const writeStream = fs.createWriteStream(testFile);
randomReadStream.pipe(writeStream);
await new Promise((r) => randomReadStream.on("end", r));
await new Promise<void>((r) => randomReadStream.on("end", r));
const manifest: {
[key: string]: { lengths: number[] };