aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml7
-rw-r--r--src/lib.rs6
2 files changed, 0 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1b6db0d..36bc6bb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -44,13 +44,6 @@ web-sys = { version = "0.3.55", features = [
# code size when deploying.
console_error_panic_hook = "0.1.6"
-# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
-# compared to the default allocator's ~10K. It is slower than the default
-# allocator, however.
-#
-# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
-wee_alloc = { version = "0.4.5", optional = true }
-
[dev-dependencies]
wasm-bindgen-test = "0.3.13"
diff --git a/src/lib.rs b/src/lib.rs
index 74d4be9..b0c7353 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -15,12 +15,6 @@ mod ocr;
use history::{History, NoETA};
-// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
-// allocator.
-#[cfg(feature = "wee_alloc")]
-#[global_allocator]
-static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
-
async fn blob_to_image(blob: Blob) -> DynamicImage {
let image_data = gloo::file::futures::read_as_bytes(&blob.into())
.await