diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-02-09 22:00:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-09 22:00:23 -0500 |
| commit | b3e88e0681248631b4bf8e4d9cd2e4d2c651f333 (patch) | |
| tree | cd526bb63ef712e21aef24ff77703727791f48d5 /Cargo.toml | |
| parent | 8da235adced567839912344ba092fb445683485a (diff) | |
refactor: deno_graph 0.43 upgrade (#17692)
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index c67b6f788..1e6121db1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ repository = "https://github.com/denoland/deno" [workspace.dependencies] v8 = { version = "0.62.2", default-features = false } -deno_ast = { version = "0.23.2", features = ["transpiling"] } +deno_ast = { version = "0.24.0", features = ["transpiling"] } deno_core = { version = "0.171.0", path = "./core" } deno_ops = { version = "0.49.0", path = "./ops" } @@ -146,6 +146,11 @@ incremental = true lto = true opt-level = 'z' # Optimize for size +# Build release with debug symbols: cargo build --profile=release-with-debug +[profile.release-with-debug] +inherits = "release" +debug = true + # NB: the `bench` and `release` profiles must remain EXACTLY the same. [profile.bench] codegen-units = 1 |
