diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a4a8786a5..3caddb69d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -56,36 +56,37 @@ dprint-plugin-json = "0.12.1" dprint-plugin-markdown = "0.9.2" dprint-plugin-typescript = "0.48.0" encoding_rs = "0.8.28" -env_logger = "0.8.3" +env_logger = "0.8.4" fancy-regex = "0.5.0" filetime = "0.2.14" -http = "0.2.3" -indexmap = { version = "1.6.2", features = ["serde"] } +http = "0.2.4" +# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved +indexmap = { version = "=1.6.2", features = ["serde"] } jsonc-parser = { version = "0.17.0", features = ["serde"] } lazy_static = "1.4.0" -libc = "0.2.93" +libc = "0.2.98" log = { version = "0.4.14", features = ["serde"] } -lspower = "1.0.0" -notify = "5.0.0-pre.7" +lspower = "1.1.0" +notify = "5.0.0-pre.10" num_cpus = "1.13.0" percent-encoding = "2.1.0" -pin-project = "1.0.6" +pin-project = "1.0.7" regex = "1.4.3" -rand = { version = "0.8.3", features = [ "small_rng" ] } +rand = { version = "0.8.4", features = [ "small_rng" ] } ring = "0.16.20" -rustyline = { version = "8.0.0", default-features = false } +rustyline = { version = "8.2.0", default-features = false } rustyline-derive = "0.4.0" semver-parser = "0.10.2" -serde = { version = "1.0.125", features = ["derive"] } +serde = { version = "1.0.126", features = ["derive"] } shell-escape = "0.1.5" sourcemap = "6.0.1" swc_bundler = "0.45.0" -swc_common = { version = "0.10.21", features = ["sourcemap"] } +swc_common = { version = "0.10.23", features = ["sourcemap"] } swc_ecmascript = { version = "0.45.0", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } tempfile = "3.2.0" termcolor = "1.1.2" text-size = "1.1.0" -tokio = { version = "1.8.0", features = ["full"] } +tokio = { version = "1.8.1", features = ["full"] } tokio-rustls = "0.22.0" uuid = { version = "0.8.2", features = ["v4", "serde"] } walkdir = "2.3.2" @@ -100,8 +101,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.1" -trust-dns-client = "0.20.1" +trust-dns-server = "0.20.3" +trust-dns-client = "0.20.3" [target.'cfg(unix)'.dev-dependencies] exec = "0.3.1" # Used in test_raw_tty |