From 340403e8d5fe30d66ff7b4d3ebcdcb60f0685ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 23 Aug 2023 15:53:18 +0200 Subject: [PATCH] Simplify deps --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7405d3e..2ef31a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,15 @@ name = "deno_config" version = "0.1.0" edition = "2021" +authors = ["the Deno authors"] +license = "MIT" +repository = "https://github.com/denoland/deno_config" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.57" -deno_ast = { version = "0.28", features = ["cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transpiling", "typescript", "view", "visit"] } +deno_ast = { version = "0.28", features = ["transpiling"] } deno_semver = "0.4.0" indexmap = { version = "1.9.2", features = ["serde"] } jsonc-parser = { version = "=0.21.1", features = ["serde"] }