-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bringing deno-amqp up-to-date and further (#46)
* chore: update dependencies to jsr * chore(multiplexer): remove linting exception for banned types * chore(codegen): update json import * style(codegen): specify lint ignore to no empty interface * test(module): remove obsolete crypto import * test(multiplexer): avoid leaking ops from timeout * chore(bench): replace deno run with deno command * ci: update actions to use latest stable and canary deno versions --------- Co-authored-by: Nash Addams <[email protected]>
- Loading branch information
nashaddams
and
Nash Addams
authored
Apr 18, 2024
1 parent
a088dff
commit 63cbcb4
Showing
11 changed files
with
69 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
export { Buffer, BufReader } from "https://deno.land/[email protected]/io/mod.ts"; | ||
export { writeAll } from "https://deno.land/[email protected]/streams/write_all.ts"; | ||
export { Buffer, BufReader, writeAll } from "jsr:@std/io"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
export { | ||
assert, | ||
assertEquals, | ||
assertMatch, | ||
assertNotEquals, | ||
assertRejects, | ||
assertThrows, | ||
} from "https://deno.land/[email protected]/testing/asserts.ts"; | ||
export { crypto } from "https://deno.land/[email protected]/crypto/mod.ts"; | ||
export { assert, assertEquals, assertMatch, assertNotEquals, assertRejects, assertThrows } from "jsr:@std/assert"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// deno-lint-ignore-file | ||
// deno-lint-ignore-file no-empty-interface | ||
|
||
export interface ConnectionProperties { | ||
} | ||
|