diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..fa72f7f --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,8 @@ +[profile.release] +opt-level = "z" +debug = false +lto = true +codegen-units = 1 +panic = "abort" +strip = true +incremental = false diff --git a/Cargo.toml b/Cargo.toml index 67593f8..1b77f9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ tracing-web = "0.1.3" tracing-subscriber = "0.3.18" [target.'cfg(target_family = "wasm")'.dependencies] -web-sys = { version = "0.3.69" } +web-sys = "0.3.69" [build-dependencies] regex = "1.10.3"