Skip to content

Commit

Permalink
Merge pull request #31 from asomers/ratatui
Browse files Browse the repository at this point in the history
Fix two RUSTSEC warnings
  • Loading branch information
asomers committed Sep 22, 2023
2 parents 08ab2f4 + ddea708 commit f033275
Show file tree
Hide file tree
Showing 5 changed files with 256 additions and 153 deletions.
6 changes: 3 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build: &BUILD

task:
env:
VERSION: 1.62.0
VERSION: 1.70.0
name: FreeBSD 12.4 MSRV
freebsd_instance:
image: freebsd-12-4-release-amd64
Expand Down Expand Up @@ -50,14 +50,14 @@ task:
# Test our minimal version spec
minver_test_script:
- . $HOME/.cargo/env
- cargo update -Zminimal-versions
- cargo update -Zdirect-minimal-versions
- cargo check --all-targets
before_cache_script: rm -rf $HOME/.cargo/registry/index

task:
name: Linux MSRV
container:
image: rust:1.62.0
image: rust:1.70.0
setup_script:
- rustup component add rustfmt
<< : *BUILD
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - ReleaseDate

### Fixed

- Removed dependency on unmaintained tui crate.
([RUSTSEC-2023-0049](https://rustsec.org/advisories/RUSTSEC-2023-0049))
Removed dependency on atty crate, fixing an unaligned read bug.
([RUSTSEC-2021-0145](https://rustsec.org/advisories/RUSTSEC-2021-0145))
(#[31](https://github.com/asomers/ztop/pull/31))

## [0.2.2] - 2023-03-27

### Added
Expand Down
Loading

0 comments on commit f033275

Please sign in to comment.