diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-08-02 10:19:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-02 10:19:27 -0400 |
commit | d7d452efc158d7b1ea89b6f92237cea3b29f88db (patch) | |
tree | f6e6d9fd599e1085751a6eba9b7c48a8f9101668 /cli | |
parent | 505d253436153b34a60018c732b55e900a331859 (diff) |
chore: format toml files internally (#11563)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c06979443..6efe071a7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -3,12 +3,12 @@ [package] name = "deno" version = "1.12.2" -license = "MIT" authors = ["the Deno authors"] +default-run = "deno" edition = "2018" -description = "Provides the deno executable" +license = "MIT" repository = "https://github.com/denoland/deno" -default-run = "deno" +description = "Provides the deno executable" [[bin]] name = "deno" @@ -62,7 +62,7 @@ fancy-regex = "0.5.0" filetime = "0.2.14" http = "0.2.4" # TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved -indexmap = { version = "=1.6.2", features = ["serde"] } +indexmap = { version = "=1.6.2", features = ["serde"] } jsonc-parser = { version = "0.17.0", features = ["serde"] } lazy_static = "1.4.0" libc = "0.2.98" @@ -72,8 +72,8 @@ notify = "5.0.0-pre.10" num_cpus = "1.13.0" percent-encoding = "2.1.0" pin-project = "1.0.7" +rand = { version = "0.8.4", features = ["small_rng"] } regex = "1.4.3" -rand = { version = "0.8.4", features = [ "small_rng" ] } ring = "0.16.20" rustyline = { version = "8.2.0", default-features = false } rustyline-derive = "0.4.0" @@ -102,8 +102,8 @@ chrono = "0.4.19" os_pipe = "0.9.2" test_util = { path = "../test_util" } tower-test = "0.4.0" -trust-dns-server = "0.20.3" trust-dns-client = "0.20.3" +trust-dns-server = "0.20.3" [target.'cfg(unix)'.dev-dependencies] exec = "0.3.1" # Used in test_raw_tty |