We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799971d commit fa4a6caCopy full SHA for fa4a6ca
objdiff-wasm/Cargo.toml
@@ -1,7 +1,9 @@
1
[package]
2
name = "objdiff-wasm"
3
version.workspace = true
4
-edition.workspace = true
+# TODO: Update to 2024
5
+# https://github.com/bytecodealliance/wit-bindgen/pull/1183
6
+edition = "2021"
7
rust-version.workspace = true
8
authors.workspace = true
9
license.workspace = true
objdiff-wasm/src/cabi_realloc.rs
@@ -20,7 +20,7 @@
20
//! this is defined as a "weak" symbol. This means that other definitions are
21
//! allowed to overwrite it if they are present in a compilation.
22
23
-use alloc::{Layout, alloc};
+use alloc::{alloc, Layout};
24
use core::ptr;
25
26
#[used]
0 commit comments