diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-08-08 16:20:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-08 16:20:21 +0200 |
commit | 165928d5dc33d3c0a1ac72bae059885b47cb558e (patch) | |
tree | 108c80c7dd4438c82be275afb7c9ce0769ab2596 | |
parent | 59ca66a207ceb4699e1322ce22f953ac0f124f13 (diff) |
upgrade: deno_lint v0.1.21 (#6985)
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 80f43a6eb..e86335010 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -448,13 +448,15 @@ dependencies = [ [[package]] name = "deno_lint" -version = "0.1.20" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97e2a1067a263cd8cbf75d115c253a152263f67da33711eaafce48132068c1b8" +checksum = "76f450b9c2ce1411d82b9f5377e4006041d5308f739d394b8d98df6748a5e541" dependencies = [ "lazy_static", "log 0.4.11", "regex", + "serde", + "serde_json", "swc_atoms", "swc_common", "swc_ecmascript", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bedbdb657..5c7601222 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -24,7 +24,7 @@ winapi = "0.3.8" [dependencies] deno_core = { path = "../core", version = "0.51.0" } -deno_lint = "0.1.20" +deno_lint = { version = "0.1.21", features = ["json"] } atty = "0.2.14" base64 = "0.12.2" |