Skip to content

Commit

Permalink
Merge pull request #128 from Nukesor/updates
Browse files Browse the repository at this point in the history
Bump crossterm
  • Loading branch information
Nukesor committed Oct 17, 2023
2 parents af3924c + 329f4c9 commit ec99e06
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- x86_64-pc-windows-msvc
- x86_64-apple-darwin
- wasm32-wasi
toolchain: [stable, nightly, 1.64]
toolchain: [stable, nightly, "1.70"]
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
Expand Down
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 ec99e06

Please sign in to comment.