0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 20:25:12 -05:00
denoland-deno/cli
Aaron O'Mullan fec1b2a5a4
refactor: new optimized op-layer using serde_v8 (#9843)
- Improves op performance.
- Handle op-metadata (errors, promise IDs) explicitly in the op-layer vs
  per op-encoding (aka: out-of-payload).
- Remove shared queue & custom "asyncHandlers", all async values are
  returned in batches via js_recv_cb.
- The op-layer should be thought of as simple function calls with little
  indirection or translation besides the conceptually straightforward
  serde_v8 bijections.
- Preserve concepts of json/bin/min as semantic groups of their
  inputs/outputs instead of their op-encoding strategy, preserving these
  groups will also facilitate partial transitions over to v8 Fast API for the
  "min" and "bin" groups
2021-03-31 10:37:38 -04:00
..
bench bench: track Date.now() as upper bound reference (#9922) 2021-03-29 01:12:19 +02:00
dts refactor: move Console to op_crates/console (#9770) 2021-03-12 21:23:59 +01:00
lsp refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
ops feat(cli/source_map): Use top user frame for error source lines (#9604) 2021-02-26 12:40:05 +01:00
tests refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
tools remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
tsc fix(cli): re-add dom.asynciterable lib (#9888) 2021-03-25 22:09:03 +11:00
ast.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
auth_tokens.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
build.rs refactor: move Console to op_crates/console (#9770) 2021-03-12 21:23:59 +01:00
Cargo.toml v1.8.2 2021-03-21 21:12:09 +01:00
checksum.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
colors.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
deno_dir.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
diagnostics.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
diff.rs chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
disk_cache.rs fix(lsp): handle cached type dependencies properly (#9500) 2021-02-15 20:32:06 +11:00
errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
file_fetcher.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
file_watcher.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
flags.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
flags_allow_net.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fmt_errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
fs_util.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
http_cache.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
http_util.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
import_map.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
info.rs feat(cli): represent type dependencies in info (#9630) 2021-03-01 22:49:58 +11:00
lockfile.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
main.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
main_runtime.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
media_type.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
module_graph.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
module_loader.rs Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
program_state.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
source_maps.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
specifier_handler.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
standalone.rs Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
text_encoding.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
tokio_util.rs upgrade: tokio 1.0 (#8779) 2021-01-11 23:50:02 -08:00
tsc.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
tsc_config.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
version.rs fix: full commit hash in canary compile download (#9166) 2021-01-19 13:53:23 +01:00

Deno CLI Crate

crates docs

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

The deno crate uses the deno_core to provide the executable.