Skip to content

Commit

Permalink
bump: Crossterm
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukesor committed Oct 17, 2023
1 parent af3924c commit 1b6d452
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
respectively. The method `is_empty` returns if the table is empty (contains no data rows). Implemented by
[Techassi](https://github.com/Techassi) in [#119](https://github.com/Nukesor/comfy-table/pull/119).

### Chore

- Bump crossterm dependency

## [7.0.1] - 2023-06-16

## Fix
Expand Down
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ debug = []
integration_test = []

[dependencies]
crossterm = { version = "0.26", optional = true, default-features = false }
strum = "0.25"
strum_macros = "0.25"
unicode-width = "0.1"
Expand All @@ -78,3 +77,10 @@ pretty_assertions = "1"
proptest = "1"
rand = "0.8"
rstest = "0.18"

# We don't need any of the default features for crossterm.
# However, the windows build needs the windows feature enabled.
[target.'cfg(not(windows))'.dependencies]
crossterm = { version = "0.27", optional=true, default-features = false }
[target.'cfg(windows)'.dependencies]
crossterm = { version = "0.27", optional=true, default-features = false, features=["windows"] }

0 comments on commit 1b6d452

Please sign in to comment.