From c92a1519f093c39013965ec706a989043a1df128 Mon Sep 17 00:00:00 2001 From: Sam Cao Date: Wed, 9 Oct 2024 08:24:19 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore:=20Upgrade=20deno=5Fast=20?= =?UTF-8?q?to=20v0.42.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/release_notes.md | 5 +++++ rust/Cargo.lock | 8 ++++---- rust/Cargo.toml | 4 ++-- rust/rust-toolchain.toml | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/docs/release_notes.md b/docs/release_notes.md index f9b3ff3e..6f106e9f 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -1,5 +1,10 @@ # Release Notes +## 1.0.1 + +* Upgraded deno_ast to v0.42.2 +* Upgraded rust toolchain to v1.81.0 + ## 1.0.0 * Upgraded deno_ast to v0.42.0 diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 5036d9aa..36f36241 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -91,9 +91,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" [[package]] name = "arrayvec" @@ -310,9 +310,9 @@ dependencies = [ [[package]] name = "deno_ast" -version = "0.42.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b08d11d9e4086b00d3428650e31153cf5896586411763cb88a6423ce5b18791" +checksum = "b2b9d03b1bbeeecdac54367f075d572131736d06c5be3bc49037855bc5ab1bbb" dependencies = [ "base64 0.21.7", "deno_media_type", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index aa4843a3..1207a95d 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] base64 = "0.22.1" log = "0.4.22" env_logger = "0.11.5" -deno_ast = { version = "0.42.0", features = [ +deno_ast = { version = "0.42.2", features = [ "bundler", "cjs", "codegen", @@ -32,4 +32,4 @@ deno_ast = { version = "0.42.0", features = [ ] } jni = "0.21.1" num-bigint = "0.4.6" -anyhow = "1.0.86" +anyhow = "1.0.89" diff --git a/rust/rust-toolchain.toml b/rust/rust-toolchain.toml index 42be26d8..abd1fd75 100644 --- a/rust/rust-toolchain.toml +++ b/rust/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "1.79.0" +channel = "1.81.0" components = ["clippy", "rustfmt"] profile = "minimal"