1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00
denoland-deno/cli
Divy Srivastava ba6bd444b6
perf: use deno_native_certs crate (#18072)
Fixes #18071 

Replace `rustls_native_certs` which links to Security framework.
https://github.com/denoland/deno_native_certs uses dlopen to lazy load
when needed.
2023-10-31 12:55:46 +01:00
..
args perf: use deno_native_certs crate (#18072) 2023-10-31 12:55:46 +01:00
bench build: fix lsp benchmark (#20969) 2023-10-25 03:13:16 +00:00
cache refactor: break out ModuleInfoCache from ParsedSourceCache (#20977) 2023-10-25 18:13:22 -04:00
js feat(unstable): add Deno.jupyter.display API (#20819) 2023-10-12 22:32:38 +00:00
lsp perf(lsp): fix redundant walk when collecting tsc code lenses (#20974) 2023-10-25 21:51:02 +01:00
napi chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
npm fix(unstable/byonm): improve error messages (#20987) 2023-10-26 21:22:15 -04:00
ops refactor: migrate more ops to op2 macro (#20808) 2023-10-07 21:04:03 +05:30
schemas fix: add 'unstable' property to config json schema (#20984) 2023-10-26 22:11:24 +02:00
standalone feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
tests chore: update ext/kv to use denokv_* crates (#20986) 2023-10-31 11:13:57 +00:00
tools refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
tsc Revert "chore: update deno_std submodule (#20994)" (#21001) 2023-10-28 01:24:37 +00:00
util feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
auth_tokens.rs chore: update base64 crate (#20877) 2023-10-26 18:39:04 +02:00
build.rs chore: update ext/kv to use denokv_* crates (#20986) 2023-10-31 11:13:57 +00:00
Cargo.toml refactor: update to deno_doc 0.71 (#21023) 2023-10-31 09:19:43 +05:30
deno.ico
deno_std.rs chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
emit.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
errors.rs refactor: upgrade to deno_ast 0.31 and deno_graph 0.59 (#20965) 2023-10-24 21:43:19 +00:00
factory.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
file_fetcher.rs feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
graph_util.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01:00
http_util.rs feat(unstable): add more options to Deno.createHttpClient (#17385) 2023-05-21 03:43:54 +02:00
js.rs build: allow disabling snapshots for dev (#20048) 2023-08-06 01:47:15 +02:00
main.rs fix: implement node:tty (#20892) 2023-10-30 15:53:08 +00:00
module_loader.rs refactor: break out ModuleInfoCache from ParsedSourceCache (#20977) 2023-10-25 18:13:22 -04:00
node.rs chore: rename some helpers on the Fs trait (#20097) 2023-08-08 16:28:18 -04:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs fix(unstable/byonm): improve error messages (#20987) 2023-10-26 21:22:15 -04:00
version.rs refactor: make version and user_agent &'static str (#18400) 2023-03-23 23:27:58 +01:00
worker.rs feat: deno run --unstable-hmr (#20876) 2023-10-31 01:25:58 +01: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.