Skip to content

Commit efe4939

Browse files
authored
0.32.0 (#246)
1 parent 1feae10 commit efe4939

File tree

7 files changed

+22
-35
lines changed

7 files changed

+22
-35
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,7 @@ jobs:
2626
with:
2727
submodules: true
2828

29-
- name: Install rust
30-
uses: hecrj/setup-rust-action@v1.3.4
31-
with:
32-
rust-version: 1.57.0
33-
34-
- name: Install clippy and rustfmt
35-
run: |
36-
rustup component add clippy
37-
rustup component add rustfmt
29+
- uses: dtolnay/rust-toolchain@stable
3830

3931
- name: Rust cache
4032
uses: Swatinem/rust-cache@v1

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deno_doc"
3-
version = "0.31.0"
3+
version = "0.32.0"
44
edition = "2021"
55
description = "doc generation for deno"
66
authors = ["the Deno authors"]
@@ -16,8 +16,8 @@ name = "ddoc"
1616
[dependencies]
1717
anyhow = { version = "1.0.43", optional = true }
1818
cfg-if = "1.0.0"
19-
deno_ast = "0.11.0"
20-
deno_graph = "0.23.0"
19+
deno_ast = "0.12.0"
20+
deno_graph = "0.24.0"
2121
futures = "0.3.17"
2222
js-sys = { version = "0.3.55", optional = true }
2323
lazy_static = "1.4.0"

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,7 @@ $ cargo run --example ddoc ../deno_std/http/mod.ts
6161

6262
## Developing
6363

64-
Make sure to have latest stable version of Rust installed (1.56.0).
65-
6664
```shell
67-
# check version
68-
$ rustc --version
69-
rustc 1.56.0 (09c42c458 2021-10-18)
70-
7165
# build all targets
7266
$ cargo build --all-targets
7367

lib/deno_doc.generated.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
206206
}
207207
function __wbg_adapter_20(arg0, arg1, arg2) {
208208
wasm
209-
._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hf7fbeccad13327ba(
209+
._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h80c0a2e410c88262(
210210
arg0,
211211
arg1,
212212
addHeapObject(arg2),
@@ -248,7 +248,7 @@ function handleError(f, args) {
248248
}
249249
}
250250
function __wbg_adapter_42(arg0, arg1, arg2, arg3) {
251-
wasm.wasm_bindgen__convert__closures__invoke2_mut__hc372fdad5c89c750(
251+
wasm.wasm_bindgen__convert__closures__invoke2_mut__h1d32b5a95f1db52a(
252252
arg0,
253253
arg1,
254254
addHeapObject(arg2),
@@ -428,8 +428,8 @@ const imports = {
428428
__wbindgen_throw: function (arg0, arg1) {
429429
throw new Error(getStringFromWasm0(arg0, arg1));
430430
},
431-
__wbindgen_closure_wrapper1003: function (arg0, arg1, arg2) {
432-
var ret = makeMutClosure(arg0, arg1, 170, __wbg_adapter_20);
431+
__wbindgen_closure_wrapper1001: function (arg0, arg1, arg2) {
432+
var ret = makeMutClosure(arg0, arg1, 169, __wbg_adapter_20);
433433
return addHeapObject(ret);
434434
},
435435
},

lib/deno_doc_bg.wasm

9.91 KB
Binary file not shown.

rust-toolchain.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[toolchain]
22
channel = "1.58.1"
3+
components = ["clippy", "rustfmt"]

0 commit comments

Comments
 (0)