Skip to content

Commit

Permalink
Remove unused features from tui/Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
zdiff committed Oct 5, 2024
1 parent 26d0adc commit ec44a5e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 86 deletions.
92 changes: 14 additions & 78 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ default = ["tips"]
tips = ["rand"]

[dependencies]
clap = { version = "4.5.18", features = ["derive"] }
crossterm = "0.28.1"
clap = { version = "4.5.18", features = ["derive", "std"], default-features = false }
crossterm = { version = "0.28.1", default-features = false }
ego-tree = { workspace = true }
oneshot = "0.1.8"
oneshot = { version = "0.1.8", features = ["std"], default-features = false }
portable-pty = "0.8.1"
ratatui = "0.28.1"
ratatui = { version = "0.28.1", features = ["crossterm"], default-features = false }
tui-term = "0.1.12"
temp-dir = "0.1.14"
unicode-width = "0.2.0"
unicode-width = { version = "0.2.0", default-features = false }
rand = { version = "0.8.5", optional = true }
linutil_core = { path = "../core", version = "24.9.28" }
linutil_core = { version = "24.9.28", path = "../core" }
tree-sitter-highlight = "0.23.0"
tree-sitter-bash = "0.23.1"
anstyle = "1.0.8"
ansi-to-tui = "6.0.0"
anstyle = { version = "1.0.8", default-features = false }
ansi-to-tui = { version = "6.0.0", default-features = false }
zips = "0.1.7"

[build-dependencies]
Expand Down

0 comments on commit ec44a5e

Please sign in to comment.