1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli
Luca Casonato 9e6cd91014
chore: align fetch to spec (#10203)
This commit aligns the `fetch` API and the `Request` / `Response`
classes belonging to it to the spec. This commit enables all the
relevant `fetch` WPT tests. Spec compliance is now at around 90%.

Performance is essentially identical now (within 1% of 1.9.0).
2021-04-20 14:47:22 +02:00
..
bench chore: update copyright headers (#10243) 2021-04-20 14:27:36 +09:00
dts revert: Conn type changes in #10012 and #10061 (#10255) 2021-04-20 10:12:33 +10:00
lsp fix(#10031): lsp handles x-typescript-types header on type only imports properly (#10261) 2021-04-20 22:22:22 +10:00
ops cleanup(cli): use runtime's reg_sync() and reg_async() (#10241) 2021-04-18 16:03:46 +02:00
tests chore: align fetch to spec (#10203) 2021-04-20 14:47:22 +02:00
tools fix(install): use first deno executable on PATH rather than deno.exe (#10247) 2021-04-18 19:38:40 +02:00
tsc feat(lsp): Implement textDocument/semanticTokens/full (#10233) 2021-04-20 11:26:36 +10:00
ast.rs feat: set useDefineForClassFields to true (#10119) 2021-04-11 07:56:40 +10:00
auth_tokens.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
build.rs refactor(deno): remove concept of bin & json ops (#10145) 2021-04-12 15:55:05 -04:00
Cargo.toml v1.9.0 2021-04-13 20:11:17 +02: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 feat(runtime): stabilize Deno.fstat and Deno.fstatSync (#10108) 2021-04-12 11:27:38 +02:00
diff.rs chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
disk_cache.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
errors.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
file_fetcher.rs feat(runtime/permissions): prompt fallback (#9376) 2021-04-12 11:15:43 +09:00
file_watcher.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
flags.rs chore: improve help text (#10186) 2021-04-18 15:12:55 +02: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 feat: blob URL support (#10045) 2021-04-07 15:22:14 +02: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 feat(cli): raise file descriptor limit on startup (#10162) 2021-04-13 10:24:45 -04:00
main_runtime.rs feat(cli): raise file descriptor limit on startup (#10162) 2021-04-13 10:24:45 -04:00
media_type.rs upgrade: Rust 1.51.0 (#9895) 2021-03-25 19:17:37 +01:00
module_graph.rs feat: set useDefineForClassFields to true (#10119) 2021-04-11 07:56:40 +10:00
module_loader.rs Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
program_state.rs feat(runtime/permissions): prompt fallback (#9376) 2021-04-12 11:15:43 +09:00
README.md Remove deno_typescript (#6813) 2020-07-20 19:49:57 -04:00
source_maps.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
specifier_handler.rs feat(runtime/permissions): prompt fallback (#9376) 2021-04-12 11:15:43 +09:00
standalone.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
text_encoding.rs chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
tokio_util.rs feat: native HTTP bindings (#9935) 2021-04-08 18:34:15 -04:00
tsc.rs refactor(deno): remove concept of bin & json ops (#10145) 2021-04-12 15:55:05 -04:00
tsc_config.rs feat: set useDefineForClassFields to true (#10119) 2021-04-11 07:56:40 +10:00
unix_util.rs chore: update copyright headers (#10243) 2021-04-20 14:27:36 +09: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.