Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yoav-lavi committed Jul 16, 2023
1 parent 1ebeb20 commit 6bf9c0b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ members = [
"xtask",
]


[profile.release]
strip = "debuginfo"
strip = true

[profile.release.package.melody_wasm]
opt-level = "z"
strip = true
codegen-units = 1
1 change: 0 additions & 1 deletion crates/melody_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ repository = "https://github.com/yoav-lavi/melody"
readme = "README.md"
version = "0.19.0"
edition = "2021"
rust-version = "1.58.0"
license = "MIT OR Apache-2.0"
keywords = ["melody", "melodylang", "language", "cli"]
categories = ["command-line-utilities"]
Expand Down
1 change: 0 additions & 1 deletion crates/melody_compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ repository = "https://github.com/yoav-lavi/melody"
readme = "README.md"
version = "0.19.0"
edition = "2021"
rust-version = "1.58.0"
license = "MIT OR Apache-2.0"
keywords = ["melody", "melodylang", "language", "compiler"]
categories = ["compilers"]
Expand Down
8 changes: 1 addition & 7 deletions crates/melody_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "melody_wasm"
version = "0.19.0"
edition = "2021"
rust-version = "1.58.0"
rust-version = "1.71.0"
description = "WASM bindings for the Melody language compiler"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yoav-lavi/melody"
Expand All @@ -12,12 +12,6 @@ categories = ["webassembly"]
[lib]
crate-type = ["cdylib"]

[profile.release]
opt-level = "z"
strip = true
lto = true
codegen-units = 1

[dependencies]
wasm-bindgen = "0.2.81"
console_error_panic_hook = "0.1.7"
Expand Down

0 comments on commit 6bf9c0b

Please sign in to comment.