Skip to content

Commit

Permalink
chore(dependencies): update
Browse files Browse the repository at this point in the history
  • Loading branch information
saying121 committed Jul 26, 2024
1 parent 1ad0806 commit 27918b5
Show file tree
Hide file tree
Showing 8 changed files with 303 additions and 512 deletions.
799 changes: 292 additions & 507 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ html2text = { version = "^0" }
pretty_assertions = { version = "^1" }
paste = { version = "^1" }

ratatui = { version = "^0.26.3" }
ratatui = { version = "^0.27" }

colored = { version = "^2" }

Expand Down
2 changes: 1 addition & 1 deletion crates/lcode-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lcode-config"
version = "0.3.14"
version = "0.3.13"
license = "MIT OR Apache-2.0"
description = "config mod for [lcode](https://crates.io/crates/lcode)"
edition = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/lcode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lcode"
version = "0.9.3"
version = "0.9.2"
description = "An application of terminal write leetcode.一个终端刷力扣的应用"
documentation = "https://docs.rs/lcode"
license = "Apache-2.0"
Expand Down Expand Up @@ -53,7 +53,7 @@ clap = { version = "^4", default-features = false, features = [

ratatui = { workspace = true }
crossterm = { workspace = true }
tui-textarea = { version = "^0.4" }
tui-textarea = { version = "^0.5" }

# Shit, decode leetcode avator error: `InvalidSignature`
# ratatui-image = { version = "^1", default-features = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/lcode/src/mytui/ui/edit_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ use lcode_config::global::{G_THEME, G_USER_CONFIG};
use leetcode_api::render::Render;
use ratatui::{prelude::*, widgets::*};

use self::style::Styled;

use super::title_block;
use crate::{
app::inner::App,
Expand Down
2 changes: 2 additions & 0 deletions crates/lcode/src/mytui/ui/filter_topic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ use crate::{
},
};

use self::style::Styled;

pub fn draw_difficults(f: &mut Frame, app: &mut App, area: Rect) {
let items = app
.topic
Expand Down
2 changes: 2 additions & 0 deletions crates/lcode/src/mytui/ui/select_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ use crate::{
},
};

use self::style::Styled;

/// some info
pub fn draw_msg(f: &mut Frame, app: &mut App, area: Rect) {
let (msg, style) = match app.select.inputline.mode {
Expand Down
2 changes: 1 addition & 1 deletion crates/leetcode-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leetcode-api"
version = "0.4.1"
version = "0.4.0"
description = "leetcode api"
license = "MIT"
edition = { workspace = true }
Expand Down

0 comments on commit 27918b5

Please sign in to comment.