Workspace dependencies (#68)

* init

* clean

* update cargo toml for pallet template

* clean

* save

* finish node
This commit is contained in:
Amar Singh
2023-12-20 10:37:56 -05:00
committed by GitHub
parent 0464aa5b91
commit b734abf5eb
9 changed files with 288 additions and 199 deletions
+4 -12
View File
@@ -1,13 +1,5 @@
#[cfg(feature = "std")]
fn main() {
substrate_wasm_builder::WasmBuilder::new()
.with_current_project()
.export_heap_base()
.import_memory()
.build()
}
use substrate_wasm_builder::WasmBuilder;
/// The wasm builder is deactivated when compiling
/// this crate for wasm to speed up the compilation.
#[cfg(not(feature = "std"))]
fn main() {}
fn main() {
WasmBuilder::new().with_current_project().export_heap_base().import_memory().build()
}