summaryrefslogtreecommitdiff
path: root/.cargo
AgeCommit message (Collapse)Author
2023-12-09feat: bring back WebGPU (#20812)Leo Kettmeir
Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com> Co-authored-by: Kenta Moriuchi <moriken@kimamass.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2023-08-24chore: Add a local-build.toml to make downstream packaging from sourc… ↵Matt Mastracci
(#20236) Supercedes #20230 Assists with https://github.com/Homebrew/homebrew-core/pull/140079 ``` # To run a build using a local tree: # # 0. Check out these repositories as siblings: # # - https://github.com/denoland/deno # - https://github.com/denoland/deno_core # - https://github.com/denoland/rusty_v8 # # 1. From `deno`, run: cargo --config .cargo/local-build.toml build ```
2023-06-14fix: reload config files on watcher restarts (#19487)David Sherret
Closes #19468
2023-06-09perf: add Tokio runtime monitor (#19415)Bartek Iwańczuk
This commit adds ability to print metrics of the Tokio runtime to the console by passing "DENO_TOKIO_METRICS=1" env var. Metrics will be printed every second, but this can be changed by "DENO_TOKIO_METRICS_INTERVAL=500" env var.
2023-01-04fix: upgrade deno_ast to 0.23 (#17269)David Sherret
Closes #17172 Closes #15669 Closes #8529
2022-09-19chore: fix clippy warnings (#15944)Ben Noordhuis
Stop allowing clippy::derive-partial-eq-without-eq and fix warnings about deriving PartialEq without also deriving Eq. In one case I removed the PartialEq because it a) wasn't necessary, and b) sketchy because it was comparing floating point numbers. IMO, that's a good argument for enforcing the lint rule, because it would most likely have been caught during review if it had been enabled.
2022-08-25fix: avoid global declaration collisions in cjs (#15608)David Sherret
* Use a default stack size * 2 in debug for Windows because swc using so much stack size. We should look into this more later though.
2022-08-21chore: use Rust 1.63.0 (#15464)Mathias Lafeldt
2022-08-11chore: move lint rules to cargo config for better editor integration (#15453)Mathias Lafeldt
2022-06-27chore: rename .cargo/config to .cargo/config.toml (#14959)Kayla Washburn
2022-04-15chore: release fixes based on doing the v1.20.6 release (#14289)David Sherret
2022-03-21chore: fix development issues on Windows (#14030)David Sherret
2022-03-13chore: use lld on aarch64-apple-darwin (#13928)Divy Srivastava
2020-03-23Statically link the C runtime library on Windows (#4469)Bert Belder