From fceb447653eb0a5520ab23505c3f4d78b15761fe Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Mon, 11 Sep 2023 09:46:49 -0700 Subject: [PATCH] fix(wasm): Remove stacker from dependencies --- Cargo.lock | 23 ----------------------- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dec1f2de5d..872fdf6c79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -661,7 +661,6 @@ version = "0.8.0" source = "git+https://github.com/jfecher/chumsky?rev=ad9d312#ad9d312d9ffbc66c14514fa2b5752f4127b44f1e" dependencies = [ "hashbrown 0.11.2", - "stacker", ] [[package]] @@ -2706,15 +2705,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "psm" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" -dependencies = [ - "cc", -] - [[package]] name = "ptr_meta" version = "0.1.4" @@ -3538,19 +3528,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" -[[package]] -name = "stacker" -version = "0.1.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" -dependencies = [ - "cc", - "cfg-if", - "libc", - "psm", - "winapi", -] - [[package]] name = "static_assertions" version = "1.1.0" diff --git a/Cargo.toml b/Cargo.toml index 02b8f4b08f..faacbea0d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ clap = { version = "4.3.19", features = ["derive"] } codespan = { version = "0.11.1", features = ["serialization"] } codespan-lsp = "0.11.1" codespan-reporting = "0.11.1" -chumsky = { git = "https://github.com/jfecher/chumsky", rev = "ad9d312" } +chumsky = { git = "https://github.com/jfecher/chumsky", rev = "ad9d312", default-features = false, features = ["ahash", "std"] } dirs = "4" lsp-types = "0.94" serde = { version = "1.0.136", features = ["derive"] }