deno 2.1.0

Provides the deno executable
1
2
3
4
5
6
7
8
9
10
disallowed-methods = [
  { path = "reqwest::Client::new", reason = "create an HttpClient via an HttpClientProvider instead" },
  { path = "std::process::exit", reason = "use deno_runtime::exit instead" },
]
disallowed-types = [
  { path = "reqwest::Client", reason = "use crate::http_util::HttpClient instead" },
]
ignore-interior-mutability = [
  "lsp_types::Uri",
]