Skip to content

Commit

Permalink
deps: bump deno_std to the latest version (#444)
Browse files Browse the repository at this point in the history
* Bump `@std/assert` to v1.0.0
* Bump `@std/async` to v1.0.0-rc.4
* Bump `@std/bytes` to v1.0.2
* Bump `@std/io` to v0.224.3
* Bump `@std/testing` to v1.0.0-rc.4
  • Loading branch information
uki00a authored Jul 16, 2024
1 parent 5a61447 commit 78368f6
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 55 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"exclude": ["benchmark/", "tmp/", "vendor/"]
},
"tasks": {
"cache": "deno cache mod.ts experimental/**/mod.ts tests/**/*.ts",
"lock": "rm deno.lock && deno cache mod.ts experimental/**/mod.ts tests/**/*.ts",
"check:deno-json": "deno run --allow-read=deno.json tools/check_deno_json.js",
"test": "DENO_FUTURE=1 deno test --allow-net --allow-read=tests --allow-write=tests/tmp --allow-run=redis-server,redis-cli --coverage=coverage --trace-leaks --frozen-lockfile",
"test:doc": "deno test --doc --no-run --import-map=import_map.test.json",
Expand Down
65 changes: 21 additions & 44 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deps/std/assert.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/assert@0.224.0";
export * from "jsr:@std/assert@^1.0.0";
2 changes: 1 addition & 1 deletion deps/std/async.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/async@0.224.0";
export * from "jsr:@std/async@1.0.0-rc.4/delay";
2 changes: 1 addition & 1 deletion deps/std/bytes.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/bytes@0.224.0";
export * from "jsr:@std/bytes@^1.0.2/concat";
5 changes: 4 additions & 1 deletion deps/std/io.ts
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export * from "jsr:@std/[email protected]";
export { BufReader } from "jsr:@std/[email protected]/buf-reader";
export { BufWriter } from "jsr:@std/[email protected]/buf-writer";
export { readerFromStreamReader } from "jsr:@std/[email protected]/reader-from-stream-reader";
export { readAll } from "jsr:@std/[email protected]/read-all";
1 change: 0 additions & 1 deletion deps/std/streams.ts

This file was deleted.

2 changes: 1 addition & 1 deletion deps/std/testing.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/testing@0.224.0/bdd";
export * from "jsr:@std/testing@1.0.0-rc.4/bdd";
3 changes: 1 addition & 2 deletions tests/cluster/test_util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import {
stopRedis,
} from "../test_util.ts";
import type { TestServer } from "../test_util.ts";
import { readAll } from "../../deps/std/io.ts";
import { readerFromStreamReader } from "../../deps/std/streams.ts";
import { readAll, readerFromStreamReader } from "../../deps/std/io.ts";
import { delay } from "../../deps/std/async.ts";

export interface TestCluster {
Expand Down
3 changes: 1 addition & 2 deletions tools/make_mod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env deno run --allow-read --allow-write --allow-run

import { readAll } from "../deps/std/io.ts";
import { readerFromStreamReader } from "../deps/std/streams.ts";
import { readAll, readerFromStreamReader } from "../deps/std/io.ts";

const encoder = new TextEncoder();
const decoder = new TextDecoder();
Expand Down

0 comments on commit 78368f6

Please sign in to comment.