diff --git a/Cargo.toml b/Cargo.toml index 9961904..7e98665 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,16 +48,6 @@ embassy = [ [dependencies] Virtual_machine = { path = "Modules/Virtual_machine" } -[profile.release.package.File_system_bindings_WASM_test] -# lto = true -opt-level = 's' -strip = true - -[profile.release.package.Virtual_machine_WASM_test] -# lto = true -opt-level = 's' -strip = true - [target.'cfg( target_os = "espidf" )'.dependencies] esp-idf-sys = { version = "0.34.1", features = ["binstart"] } esp-idf-hal = "0.43.1" diff --git a/Modules/Bindings/Tests/WASM_test/Cargo.toml b/Modules/Bindings/Tests/WASM_test/Cargo.toml index 0d50013..e1abe5e 100644 --- a/Modules/Bindings/Tests/WASM_test/Cargo.toml +++ b/Modules/Bindings/Tests/WASM_test/Cargo.toml @@ -5,7 +5,9 @@ name = "File_system_bindings_WASM_test" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.release] +opt-level = 's' +strip = true [dependencies] Binding_tool = { path = "../../../../../Binding_tool", features = ["WASM"] } diff --git a/Modules/Virtual_machine/Tests/WASM_test/Cargo.toml b/Modules/Virtual_machine/Tests/WASM_test/Cargo.toml index 8e0e28a..415bc33 100644 --- a/Modules/Virtual_machine/Tests/WASM_test/Cargo.toml +++ b/Modules/Virtual_machine/Tests/WASM_test/Cargo.toml @@ -5,6 +5,8 @@ name = "Virtual_machine_WASM_test" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.release] +opt-level = 's' +strip = true -[dependencies] \ No newline at end of file +[dependencies]