diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-03-15 21:08:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 14:08:41 +0100 |
commit | b2a1ad0611e484b57420925f51393e57c679815c (patch) | |
tree | 470ccc8943c63f664fa154424e36df3a0051899f /cli | |
parent | a3e0766e6a56ce0904e8e6e9f21d87c7f4a15be3 (diff) |
chore: Upgrade rustyline to 8.0.0 (#9781)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 744ce5879..4c556fe42 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -62,7 +62,7 @@ percent-encoding = "2.1.0" pin-project = "1.0.5" regex = "1.4.3" ring = "0.16.20" -rustyline = { version = "7.1.0", default-features = false } +rustyline = { version = "8.0.0", default-features = false } rustyline-derive = "0.4.0" semver-parser = "0.10.2" serde = { version = "1.0.123", features = ["derive"] } @@ -83,9 +83,6 @@ walkdir = "2.3.1" fwdansi = "1.1.0" winapi = { version = "0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] } -[target.'cfg(unix)'.dependencies] -nix = "0.19.1" - [dev-dependencies] # Used in benchmark chrono = "0.4.19" @@ -97,6 +94,7 @@ trust-dns-client = "0.20.0" [target.'cfg(unix)'.dev-dependencies] exec = "0.3.1" # Used in test_raw_tty +nix = "0.20.0" [package.metadata.winres] # This section defines the metadata that appears in the deno.exe PE header. |