Skip to content

Commit

Permalink
downgrade crossterm due to upstream bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaSd committed Sep 13, 2021
1 parent cd17dee commit 3e56fc4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**1.26.0**
- Downgrade crossterm due to upstream bug https://github.com/crossterm-rs/crossterm/issues/601

**1.25.0**
- Handle rust2021 new error format
- Add `show_warngings` option
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions crates/irust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irust"
version = "1.25.0"
version = "1.26.0"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand All @@ -9,12 +9,12 @@ repository = "https://github.com/sigmaSd/IRust"
license = "MIT"

[dependencies]
crossterm = { version = "0.21.0", features = ["serde"] }
crossterm = { version = "0.20.0", features = ["serde"] }
dirs-next = "2.0.0"
toml = "0.5.8"
serde = { version = "1.0.126", features = ["derive"] }
printer = { path = "../printer/", version = "0.2.12" }
irust_api = { path = "../irust_api/", version = "0.19.1" }
printer = { path = "../printer/", version = "0.3.0" }
irust_api = { path = "../irust_api/", version = "0.20.0" }
irust_repl = { path = "../irust_repl", version = "0.7.1", features = ["serde"] }

# For scripting
Expand Down
4 changes: 2 additions & 2 deletions crates/irust_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "irust_api"
version = "0.19.1"
version = "0.20.0"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2018"
description = "IRust API"
repository = "https://github.com/sigmaSd/IRust/tree/master/crates/irust_api"
license = "MIT"

[dependencies]
crossterm = { version = "0.21.0", features = ["serde"] }
crossterm = { version = "0.20.0", features = ["serde"] }
rscript = "0.10.0"
serde = { version = "1.0.126", features = ["derive"] }
4 changes: 2 additions & 2 deletions crates/printer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "printer"
version = "0.2.12"
version = "0.3.0"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand All @@ -9,5 +9,5 @@ repository = "https://github.com/sigmaSd/IRust/tree/master/crates/printer"
license = "MIT"

[dependencies]
crossterm = "0.21.0"
crossterm = "0.20.0"
unicode-width = "0.1.8"

0 comments on commit 3e56fc4

Please sign in to comment.