* feat(unstable): support caching npm dependencies only as they're needed * refactor(lint): manage schema files for linter in Deno repo * fix(outdated): error when there are no config files * chore(tests): Deprecate remaining usages of itest in check tests * fix(lint): do not error providing --allow-import * fix(outdated): respect --quiet flag for hints * perf(compile): improve FileBackedVfsFile * fix: replace the @deno-types with @ts-types * fix(outdated): show a suggestion for updating * fix(compile): correct read length for transpiled typescript files * chore: reduce allocations in a few places * fix(unstable): don't unwrap optional state in otel * fix: do not error when subpath has an @ symbol * fix(node): update list of builtin node modules, add missing export to _http_common * fix(ext/node): handle Float16Array in node:v8 module * refactor: Make `deno_runtime::shared` module public * fix(task): do not always kill child on ctrl+c on windows * fix: do not panic when fetching invalid file url on Windows * test(ext/node): remove flaky node:dgram compat test case * fix(ext/node): accept file descriptor in fs.readFile(Sync) * chore: add script to check remaining node compat cases OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=272
19 lines
550 B
Diff
19 lines
550 B
Diff
--- deno-2.0.0/Cargo.toml.orig 2024-10-11 10:48:05.784147338 +0200
|
|
+++ deno-2.0.0/Cargo.toml 2024-10-11 10:48:41.196337140 +0200
|
|
@@ -231,7 +231,6 @@ winres = "=0.1.12"
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = true
|
|
-lto = true
|
|
opt-level = 'z' # Optimize for size
|
|
|
|
# Build release with debug symbols: cargo build --profile=release-with-debug
|
|
@@ -243,7 +242,6 @@ debug = true
|
|
[profile.release-lite]
|
|
inherits = "release"
|
|
codegen-units = 128
|
|
-lto = "thin"
|
|
|
|
# Key generation is too slow on `debug`
|
|
[profile.dev.package.num-bigint-dig]
|