0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-11 22:59:41 -04:00
deno/cli
Nathan Whitaker ee4c14a550
chore: update to rust 1.85 (#28236)
Updates to use rust 1.85. Doesn't move to the 2024 edition, as that's a
fair bit more involved.

A nice side benefit is that the new rustc version seems to lead to a
slight reduction in binary size (at least on mac):

```
    FILE SIZE   
 -------------- 
  +4.3%  +102Ki    __DATA_CONST,__const
  [NEW] +69.3Ki    __TEXT,__literals
  [NEW] +68.5Ki    Rebase Info
  +5.0% +39.9Ki    __TEXT,__unwind_info
   +57% +8.85Ki    [__TEXT]
  [NEW] +8.59Ki    Lazy Binding Info
  [NEW] +5.16Ki    __TEXT,__stub_helper
  [NEW] +3.58Ki    Export Info
  [NEW] +3.42Ki    __DATA,__la_symbol_ptr
  -0.1%    -726    [12 Others]
 -21.4% -3.10Ki    [__DATA_CONST]
 -95.8% -3.39Ki    __DATA_CONST,__got
 -20.9% -3.43Ki    [__DATA]
  -0.5% -4.52Ki    Code Signature
 -100.0% -11.6Ki    [__LINKEDIT]
  -1.0% -43.5Ki    Symbol Table
  -1.6% -44.0Ki    __TEXT,__gcc_except_tab
  -0.2% -48.1Ki    __TEXT,__const
  -3.3% -78.6Ki    __TEXT,__eh_frame
  -0.7%  -320Ki    __TEXT,__text
  -1.5%  -334Ki    String Table
  -0.5%  -586Ki    TOTAL
```
2025-02-25 08:50:01 -08:00
..
args chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
bench chore: update dlint to 0.73.0 for CI (#28169) 2025-02-19 14:07:01 +00:00
cache chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
js fix(lint): give access to SourceCode in 'deno test' (#28278) 2025-02-24 17:21:16 +01:00
lib chore: forward v2.2.2 release commit to main (#28292) 2025-02-25 14:36:11 +05:30
lsp chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
npm chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
ops feat(jupyter): make GPUTexture and GPUBuffer displayable (#28117) 2025-02-18 00:29:45 -08:00
rt chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
schemas refactor(cli): update JSON schemas versions (#28252) 2025-02-24 10:11:06 -05:00
snapshot chore: forward v2.2.2 release commit to main (#28292) 2025-02-25 14:36:11 +05:30
standalone chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
tools chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
tsc fix(lsp): create cacheable ExportInfoMap per language service (#28240) 2025-02-22 00:48:50 +00:00
util chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
build.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
Cargo.toml chore: forward v2.2.2 release commit to main (#28292) 2025-02-25 14:36:11 +05:30
cdp.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
clippy.toml refactor: do not use deno_fs::FileSystem everywhere (#27508) 2024-12-31 11:29:07 -05:00
deno.ico
emit.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
factory.rs refactor(cli): extract TypeChecker to separate module (#28235) 2025-02-21 21:00:29 +00:00
file_fetcher.rs fix(check): compiler options from workspace members (#27785) 2025-01-28 10:49:58 -05:00
graph_container.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
graph_util.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
http_util.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
integration_tests_runner.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
jsr.rs refactor(lsp): remove Send + Sync requirement (#28035) 2025-02-12 13:37:47 +00:00
main.rs fix(http): generate OtelInfo only when otel metrics are enabled (#28286) 2025-02-24 20:27:35 -08:00
module_loader.rs refactor(cli): extract TypeChecker to separate module (#28235) 2025-02-21 21:00:29 +00:00
node.rs refactor: add WorkspaceFactory and ResolverFactory (#27766) 2025-01-23 18:52:55 -05:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
registry.rs refactor: separate publish from pm subcommands (#28237) 2025-02-21 17:02:33 -05:00
resolver.rs fix(check): support sloppy imports with "compilerOptions.rootDirs" (#27973) 2025-02-05 23:08:10 +00:00
task_runner.rs refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
type_checker.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
worker.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.