Fix yanked crossterm version (#2542)

This commit is contained in:
Jonathan Turner 2020-09-14 13:14:59 +12:00 committed by GitHub
parent 599bb9797d
commit dd79afb503
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -43,14 +43,14 @@ nu_plugin_to_bson = {version = "0.19.0", path = "./crates/nu_plugin_to_bson", op
nu_plugin_to_sqlite = {version = "0.19.0", path = "./crates/nu_plugin_to_sqlite", optional = true}
nu_plugin_tree = {version = "0.19.0", path = "./crates/nu_plugin_tree", optional = true}
crossterm = { version = "0.17.8", optional = true }
semver = { version = "0.10.0", optional = true }
url = { version = "2.1.1", optional = true }
crossterm = {version = "0.17", optional = true}
semver = {version = "0.10.0", optional = true}
url = {version = "2.1.1", optional = true}
clap = "2.33.3"
ctrlc = "3.1.6"
dunce = "1.0.1"
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
futures = {version = "0.3.5", features = ["compat", "io-compat"]}
log = "0.4.11"
pretty_env_logger = "0.4.0"
quick-xml = "0.18.1"
@ -59,7 +59,7 @@ quick-xml = "0.18.1"
nu-test-support = {version = "0.19.0", path = "./crates/nu-test-support"}
[build-dependencies]
serde = { version = "1.0.115", features = ["derive"] }
serde = {version = "1.0.115", features = ["derive"]}
toml = "0.5.6"
[features]

View File

@ -11,8 +11,8 @@ doctest = false
[dependencies]
ansi_term = "0.12.1"
crossterm = "0.17.8"
image = { version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"] }
crossterm = "0.17"
image = {version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"]}
neso = "0.5.0"
nu-errors = {path = "../nu-errors", version = "0.19.0"}
nu-plugin = {path = "../nu-plugin", version = "0.19.0"}