Skip to content

Commit

Permalink
Merge pull request #581 from hatoo/ratatui-reexports-crossterm
Browse files Browse the repository at this point in the history
remove crossterm from deps
  • Loading branch information
hatoo authored Sep 24, 2024
2 parents 6937b14 + 3a076e9 commit 227bdfd
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ anyhow = "1.0.86"
average = "0.15.1"
byte-unit = "5.1.4"
clap = { version = "4.5.9", features = ["derive"] }
crossterm = "0.28.1"
float-ord = "0.3.2"
flume = "0.11"
futures = "0.3.30"
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use hyper::http::{
use printer::PrintMode;
use rand::prelude::*;
use rand_regex::Regex;
use ratatui::crossterm;
use result_data::ResultData;
use std::{env, io::Read, str::FromStr};
use url::Url;
Expand Down
1 change: 1 addition & 0 deletions src/monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use crossterm::{
ExecutableCommand,
};
use hyper::http;
use ratatui::crossterm;
use ratatui::{
backend::CrosstermBackend,
layout::{Constraint, Direction, Layout},
Expand Down
1 change: 1 addition & 0 deletions src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use average::{Max, Min, Variance};
use byte_unit::Byte;
use crossterm::style::{StyledContent, Stylize};
use hyper::http::{self, StatusCode};
use ratatui::crossterm;
use std::{
collections::BTreeMap,
io::Write,
Expand Down

0 comments on commit 227bdfd

Please sign in to comment.