Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .cargo/config.toml

This file was deleted.

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ cliclack = "0.3.6"
console = "0.15.11"
ctrlc = "3.4.5"
fast-float = "0.2.0"
fast_float = "0.2.0"
hashbrown = "0.16.0"
lexical = { version = "7.0.4", default-features = false, features = [
"std",
Expand Down Expand Up @@ -54,8 +53,14 @@ wtf8 = "0.1"
[workspace.metadata.dylint]
libraries = [{ path = "nova_lint" }]

# The release profile, used for `cargo build --release`.
[profile.release]
lto = true
# Enables "fat" LTO, for faster release builds
lto = "fat"
# Makes sure that all code is compiled together, for LTO
codegen-units = 1
# Strips debug information and symbols from the binary, reducing its size
strip = "symbols"

# This profile has all the same safety checks as dev builds. It trades slightly
# longer compile times for faster runs, which is worth it when running test262.
Expand Down
Loading